FrontEnd/React
검색결과
1
개


[React] LifeCycleAPI
https://ko.reactjs.org/docs/react-component.html React.Component – React A JavaScript library for building user interfaces ko.reactjs.org - 거의 이거 보고 정리했다. LifeCycleAPI는 컴포넌트가 우리 브라우저에서 나타날 때, 사라질 때, 업데이트될 때, 호출되는 API이다. 컴포넌트 초기 생성(마운트) 마운트 : DOM 객체가 생성되고 브라우저에 나타나는 것을 의미. constructor 컴포넌트 생성자 함수. 컴포넌트가 새로 만들어질 때마다 이 함수가 호출된다. constructor(props){ super(props); // 여기서 this.setState()를 호출하면 안된다! th..
FrontEnd/React
2021. 11. 6. 11:29