⭐️ 개발

Node - Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client

짱구러버 2023. 7. 3. 15:49
728x90

에러 발생 

Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client

 

서버가 클라이언트에게 두개 이상의 응답을 보내려고 할떄 발생하는 오류이다. 그러니 response 주는 부분을 확인바란다.

 

나 같은 경우도 이렇게 reponse 에 두개를 보내서 이런 문제가 발생하는것이다.

const express = require('express');
const app = express();
const port = process.env.PORT || 3000;

app.get('/', (req, res) => {
	res.json({
		success: true,
	});
	res.send('Hello Wolrd!');
});

지워주면 이상 무!

728x90