node報錯:UnhandledPromiseRejectionWarning: RangeError [ERR_HTTP_INVALID_STATUS_CODE]: Invalid status code: [object Object]
不要慌,只是你忘記寫狀態碼了
http.createServer((req, res) => {
//添加響應頭處沒有寫狀態碼
res.writeHead(200,{
'Content-Type': 'text/html;charset=utf8'
})
}).listen(3000, () => {
console.log('服務器已啟動');
})