react props state
-
component State (부제. state와 props의 차이점)Study/React 2020. 6. 1. 20:30
State와 props의 차이점은 무엇인가? props("properties"의 줄임말)와 state는 일반 JS객체이다. 두 객체 모두 렌더링 결과물에 영향을 주는 정보를 가지고 있으나, 한 가지 중요한 방식에서 차이가 있다. props : (함수 매개변수처럼) 컴포넌트에 전달됨. state: (함수 내에 선언된 변수처럼) 컴포넌트 안에서 관리됨. 더 자세히 알아보자. Props props는 properties의 줄임말로써, Component로 데이터를 전달한다. render ( Hello movies! {this.props.title} ) class MoviePoster extends Component { render() { return ( {this.props.posterUrl} ); } } 위 코..