728x90
반응형
// 쿠키 생성
res.cookie('userid', userid); // 응답 객체에 쿠키를 생성한다.

// 쿠키삭제
res.clearCookie('userid'); // 응답 객체에 쿠키를 삭제한다.

// 쿠키 조회
req.cookies["userid"] // 요청 객체에서 쿠키를 조회한다



// 쿠키 생성할 때 옵션 주기
res.cookie('userid', userid, { maxAge: 60*60*1000, httpOnly: true, path:'/' });

//maxAge : 만료 시간을 밀리초 단위로 설정

//expires : 만료 날짜를 시간으로 설정

//path : cookie의 경로 default “/“

//domain : 도메인 네임

//secure : https에서만 cookie 사용

//httpOnly : 웹서버를 통해서만 cookie 접근
728x90
반응형

+ Recent posts