React/react 기초 공부하기
2020. 6. 13.
useEffect + axios를 활용하여 API 호출하기
class 기반 React에서는 lifeCycle 메소드들을 통해 관리하지만 https://loy124.tistory.com/230?category=784079 React LifeCycle 컴포넌트 생성 constructor (생성, setState 사용X), -> componentWillMount(렌더 되기전) -> render(그리는경우, setState 사용X) -> componentDidMount(렌더가 그려졌을때) 컴포넌트 제거 componentWillUnmount.. loy124.tistory.com react hooks 기반에서는 useEffect를 사용해서 lifeCycle을 관리한다. useEffect는 omponentDidMount와 componentDidUpdate, component..