笔记:前端表单提交(一)- 4. 显示 404 的路由
// 显示 404 的路由 var show404 = (req, res) => { res.writeHead(404, { 'Content-Type': 'text/plain' }); res.end('CODE 404. Something is wrong.'); };