써먹는 웹개발
[Node] Url 호출별 결과값 호출방법 본문
728x90
반응형
Q) Url 호출별 결과값 호출방법
const http = require("http"); const { resolve } = require("path"); http .createServer((req, res) => { if (req.url === "/") { res.writeHead(200); res.end("main url"); } else if (req.url === "/upload") { res.writeHead(200); res.end("upload url"); } else if (req.url === "/delete") { res.writeHead(200); res.end("delete url"); } else { res.writeHead(404); res.end("Not Found!!!"); } }) .listen(3000, () => { console.log("3000번 포트 서버 접속 완료~!!"); }); |
A) 결과값
Url 주소 | 결과값 |
localhost:3000/ | main url |
localhost:3000/upload | upload url |
localhost:3000/delete | delete url |
localhost:3000/other (위의 3조건을 제외한 나머지 주소를 입력시 우측 결과 호출) |
Not Found!!! |
728x90
반응형
'Server > Node.js' 카테고리의 다른 글
[Node] 에러메시지 - npm ERR! Unexpected end of JSON input while parsing near '...c...' (0) | 2021.04.23 |
---|---|
[Node] ejs란? (0) | 2021.04.22 |
[Node] 이미지 업로드 하는 방법 : multer (0) | 2021.04.22 |
[Node] npm(node.js) - 모듈 설치 및 삭제 명령어 (모듈을 잘못 설치했을때) (0) | 2021.04.20 |
[Node] 서버 실행 및 테스트 프로그램(Postman) (0) | 2021.04.17 |
Comments