Error [ERR_STREAM_WRITE_AFTER_END]: write after end
ERR_STREAM_WRITE_AFTER_END
- 응답(res.end(...))을 두 번 이상 했을 때 발생하는 에러
Error Code
const http = require('http');
const server = http.createServer((request, response) => {
const { method, url } = request
if(method === 'POST' && url === '/lower') {
response.end('codestates')
}
else if(method === 'POST' && url === '/upper') {
response.end('CodeStates')
}
response.end('response')
});
수정
const http = require('http');
const server = http.createServer((request, response) => {
const { method, url } = request
if(method === 'POST' && url === '/lower') {
response.end('codestates')
}
else if(method === 'POST' && url === '/upper') {
response.end('CodeStates')
} else {
response.end('response')
}
});
server.listen(4000, () => {
console.log('서버 오픈')
})
- 마지막
response.end('response')
를 else
처리
Author And Source
이 문제에 관하여(Error [ERR_STREAM_WRITE_AFTER_END]: write after end), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@hackjoong/Error-ERRSTREAMWRITEAFTEREND-write-after-end
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
const http = require('http');
const server = http.createServer((request, response) => {
const { method, url } = request
if(method === 'POST' && url === '/lower') {
response.end('codestates')
}
else if(method === 'POST' && url === '/upper') {
response.end('CodeStates')
}
response.end('response')
});
const http = require('http');
const server = http.createServer((request, response) => {
const { method, url } = request
if(method === 'POST' && url === '/lower') {
response.end('codestates')
}
else if(method === 'POST' && url === '/upper') {
response.end('CodeStates')
} else {
response.end('response')
}
});
server.listen(4000, () => {
console.log('서버 오픈')
})
response.end('response')
를 else
처리Author And Source
이 문제에 관하여(Error [ERR_STREAM_WRITE_AFTER_END]: write after end), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@hackjoong/Error-ERRSTREAMWRITEAFTEREND-write-after-end저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)