수업소개
존재하지 않는 정보에 대한 요청이 들어왔을 때 Not found 오류 메시지를 전송하는 방법을 알아봅니다.
강의
소스코드
main.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | var http = require( 'http' ); var fs = require( 'fs' ); var url = require( 'url' ); var app = http.createServer( function (request,response){ var _url = request.url; var queryData = url.parse(_url, true ).query; var pathname = url.parse(_url, true ).pathname; var title = queryData.id; if (pathname === '/' ){ fs.readFile(`data/${queryData.id}`, 'utf8' , function (err, description){ var template = ` <!doctype html> <html> <head> <title>WEB1 - ${title}</title> <meta charset= "utf-8" > </head> <body> <h1><a href= "/" >WEB</a></h1> <ul> <li><a href= "/?id=HTML" >HTML</a></li> <li><a href= "/?id=CSS" >CSS</a></li> <li><a href= "/?id=JavaScript" >JavaScript</a></li> </ul> <h2>${title}</h2> <p>${description}</p> </body> </html> `; response.writeHead(200); response.end(template); }); } else { response.writeHead(404); response.end( 'Not found' ); } }); app.listen(3000); |