Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 맥 어드레스
- DataGridView 직접 입력
- 서버동기화
- 데이터테이블 데이터 넣기
- pm2 상태 확인
- listener 1883
- pm2 설치
- 공인IP
- allow_anonymouse
- pm2 시작
- setInterval 중지
- map이 undefined가 뜰 때
- mosquitto.conf
- Replication
- mosquitto
- setInterval clear
- html #select #option #multiple
- c# datagridview 데이터 넣기
- 1883
- DatePicker
- mySQL_Replication
- AntDesign
- timepicker
- setInterval 외부 정지
- transfer
- setInterval 정지
- pm2
- pm2 확인
- invalid data
- datagridview 직접입력
Archives
- Today
- Total
개발 노트
useEffect에서 setInterval 사용할시 주의점 본문
unmount될때 또는 의존성 배열이 업데이트될 때 return 값에 넣어논 뒷정리 함수가 발생되어 백그라운드에서 중첩되어 돌 아갈 setInterval을 정리해준다.
예시
useEffect(() => {
const intervalId = setInterval(() => {
const newElapsedTimes = [];
mqttMessages.forEach((item) => {
if (Number(item.compCd) === compCd) {
const pastTime = moment(item.Now);
const currentTime = moment();
const difference = moment.duration(currentTime.diff(pastTime));
const milliseconds = difference.asMilliseconds();
newElapsedTimes.push(moment.utc(milliseconds).format('HH:mm:ss'));
}
});
setElapsedTimes(newElapsedTimes);
}, 5000);
return () => clearInterval(intervalId);
}, [mqttMessages, compCd]);
'React' 카테고리의 다른 글
eslint -disable 경고 해결 (0) | 2023.06.14 |
---|---|
antDesign Datepicker 미래 날짜 선택 못하게 설정 (0) | 2023.04.25 |
React에서 object를 setter함수로 다룰 때 (0) | 2023.04.05 |
"TypeError: rawData.some is not a function" 오류 메시지 (0) | 2023.03.13 |
하위컴포넌트에서 상위컴포넌트로 state 보내는 법 (0) | 2023.03.03 |