인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

Ahyoung Kim's profile image
Ahyoung Kim

asked

[Renewed] Node.js Textbook - From Basics to Project Practice

http 서버만들기- cookie 강의 내 질문

Written on

·

126

0

안녕하세요! 예제 4.3 Cookie2.js 파일에,

 querystring 추출해내는 부분에서 const query와 name을 { } 로 감싸줘야로 만들어줘야 하는 이유가 있나요?

http.createServer(async (req, res) => {
const cookies = parseCookies(req.headers.cookie);
// 주소가 /login으로 시작하는 경우
if (req.url.startsWith('/login')) {
const { query } = url.parse(req.url);
const { name } = qs.parse(query);
console.log(query, req.url)
console.log(name, query)
const expires = new Date();
//생략
mysqlmongodbnodejsSequelize

Answer 1

0

zerocho님의 프로필 이미지
zerocho
Instructor

2강에서 설명한 구조분해할당 문법입니다.

Ahyoung Kim's profile image
Ahyoung Kim

asked

Ask a question