반응형
404
-
[Node.js 기본] Home 및 404 Not Found 구현Node.js/nodeJS 기본 2022. 12. 12. 19:36
writeHead()의 각 인자에 대한 설명은 아래와 같다. 200 : indicates that the request was successful and the server is sending back a response with the requested data. 404 : indicates that the requested resource was not found on the server. 아래 코드는 request.url을 두 번째 인자를 true(query 객체화)로 파싱하여 루트 path인 "/"에 home을, "/"에서 query를 통해 페이지의 변화를 주었다. 또한 루트 path "/" 외의 경우는 잘못된 접근으로 취급하여 상태코드 404를 writeHead의 인자로 주었다. let http..