반응형
React.js 에서 비동기 요청 등의 동작 이후 응답/set state 가 되기 전에 해당 컴포넌트가 unmount 되면서 set state 오류가 나는 경우가 있다. 그럴때는 아래와 같이 해주면 된다.
const mounted = useRef(false);
useEffect(() => {
mounted.current = true;
() => {
mounted.current = false;
}
}, []);
const fetch = async () => {
const res = await fetch();
if (!mounted.current) {
return;
}
// now mounted. do something else
};
반응형
'웹프로그래밍 > React' 카테고리의 다른 글
[React.js] React Router v5, useRouteMatch 추가. (0) | 2020.08.30 |
---|---|
[React.js] Object is possibly 'null' (0) | 2020.08.28 |
[React] React Hook 에서 array state 업데이트시 리렌더링 되지 않을때 (0) | 2020.08.26 |
[React] Component Link to 로 연결시 스크롤 문제 해결 (0) | 2019.05.28 |