REACT 썸네일형 리스트형 React v16 lifecycle - Updating 이전 글 React v16 lifecycle - Mounting과 이어집니다. (꼭 봐야 할 필요가 있을 정도로 이어지지는 없음) 이번에는 React v16 lifecycle 에서 Updating에 대해 알아봅시다. Updating 에는 5개의 lifecycle이 있습니다. - static getDerivedStateFromProps() - 마찬가지로 다루지 않습니다. - shouldComponentUpdate() - render() - 이전 글에 포함되어 있습니다. - getSnapshotBeforeUpdate() - componentDidUpdate() shouldComponentUpdate(nextProps, nextState) 매번 update 되기 전 실행됩니다. (단, forceUpdate, .. 더보기 React v16 lifecycle - Mounting 해당 글은 리액트 공식 문서를 기반으로 작성하였고 React 버전 16을 기준으로 합니다. 리액트 16 버전의 lifecycle은 크게 4가지로 나뉩니다. - Mounting - Updating - Unmounting - Error Handling 전부 다 쓰면 길고 지루해질까 봐 이 글에서는 Mounting에 관련된 method만 알아봅니다. Mounting은 DOM에 컴포넌트가 만들어질 때의 과정입니다. Mounting에는 4개의 method가 있습니다. - constructor() - static getDerivedStateFromProps() - 이 글에선 다루지 않습니다. - render() - componentDidMount() constructor() 마운팅 되기 전에 실행됩니다. 해당 me.. 더보기 이전 1 다음