❗️Error/오류를 해결하자!

[Express] Cannot set headers after they are sent to the client

hellohailie 2022. 6. 21. 23:37

 

Cannot set headers after they are sent to the client

 

 

에러 원인

 

Express js. 파일이 하나의 요청(request)에 대해 하나 이상의 응답(response)를 보낼때 생기는 오류 입니다. 

 

 

에러 해결하기


핵심은 실수로 두 번 호출되는 콜백이나 몸이 전송된 후에 발생하는 오류를 찾아보는 것입니다. 

 

제 코드에서는 오류를 잡는 코드가 2번 반복되어 있어서 오류가 나타나는 것으로 확인하고, 하나를 삭제했습니다. 

 

그랬더니 오류해결!

 

 

참고

https://bobbyhadz.com/blog/javascript-error-cannot-set-headers-after-they-are-sent-to-client

https://avengersrhydon1121.tistory.com/150

 

 

😃 잘못된 개념 전달이 있다면 댓글 부탁드립니다. 저의 성장에 큰 도움이 됩니다🤓