231127 개발일지 TIL – Error: ReferenceError: can't access lexical declaration 'data' before initialization

The Web On Everything·2023년 11월 27일
0

개발일지

목록 보기
201/269

Error: ReferenceError: can't access lexical declaration 'data' before initialization

catch(error) {
	console.error('Error:', error);
	fetchItemDetailSpare(itemId);
}

에러가 발생하면 에러 메시지가 콘솔에 출력되는 것이었는데 'console.error('Error:', error);' 위 코드로 인해서 오류 메시지가 출력되었다.

catch(error) {
	fetchItemDetailSpare(itemId);
}

위 코드로 수정하여 사라졌는데 에러 발생시 'console.error('Error:', error);'대신 백업 대체 데이터 함수인 fetchItemDetailSpare를 보여주기로 했다.

profile
오늘은 무슨 오류를 만날까?! 널 만나러 가는 길~ LOL

0개의 댓글