-
Access a Component's stateStudy/React 2020. 5. 27. 15:27
Access a Component's state
컴포넌트의 state를 읽기 위해서, 표현식 this.state.name-of-property를 사용해라.
class TodayImFeeling extends React.Component { constructor(props) { super(props); this.state = { mood: 'decent' }; } render() { return ( <h1> I'm feeling {this.state.mood}! </h1> ); } }
위의 컴포넌트 클래스는 render 함수 안에 있는 state의 property를 읽을 수 있다.
this.props와 같이, 당신은 컴포넌트 클래스의 body의 내부에서 정의된 어떤 property로부터 this.state를 사용할 수 있다.
즉,
{this.state}, {this.state.property명}을 통해 state와 property에 접근할 수 있다는 의미!https://www.codecademy.com/courses/react-101/lessons/this-state/exercises/this-setstate
'Study > React' 카테고리의 다른 글
컴포넌트 간 state 주고받기 (0) 2020.06.01 Update state with this.setState (2) 2020.05.27 state (0) 2020.05.27 defaultProps (0) 2020.05.27 this.props.children (0) 2020.05.27