개발로그필름

[WEB] Request, Response 본문

WEB

[WEB] Request, Response

yuullog 2022. 7. 14. 14:18
728x90
반응형
SMALL
const handleHome = () => console.log("Somebody is trying to go home.");

app.get("/", handleHome);

root page로 get request를 보내는 코드이다

하지만 페이지가 계속 로딩되기만 한다

request를 받기는 했지만 응답을 해주지 않아서 계속 로딩중인것이다

 

const handleHome = (req, res) => {
    return res.send("I still love you.");
};

const handleLogin = (req, res) => {
    return res.send("Login here.")
}

app.get("/", handleHome);
app.get("/login", handleLogin);

express에서 쓸 수 있는 request object, response object가 있는데

나는 직관적인 이름으로 req, res argument를 썼다

다른 이름으 써도 상관 없지만 꼭 두개가 있어야 한다

반응형
LIST

'WEB' 카테고리의 다른 글

[WEB] Router  (0) 2022.07.23
[WEB] middleware  (0) 2022.07.15
[WEB] express  (0) 2022.07.13
[WEB] babel 실행, Nodemon  (0) 2022.07.12
[WEB] Babel  (0) 2022.07.07
Comments