728x90
반응형
componentDidUpdate
-
react lifecycle method 정리 with react-native -1 (componentDidMount, shouldComponentUpdate, componentDidUpdate, componentWillUnmount)모바일앱/react-native 2023. 2. 23. 22:03
* 컴포넌트가 생성될때 다음과 같은 순서로 함수가 호출됩니다. constructor() static getDerivedStateFromProps() render() componentDidMount() 우리는 component관련된 method에 대해 알아볼것입니다. 1. componentDidMount lifecycle method - 컴포넌트가 첫 마운트된 직후 (react component가 생성된후), 즉 트리에 삽입된 직후에 호출됩니다. 대부분 ajax 같은 외부에서 데이터를 가져올때 사용한다. export default class MyComponent extends Component{ constructor() { super(); this.state = {loading:true,data:{}} }..