Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 상속
- 스크롤이벤트
- array
- generic
- supabase 페이지네이션
- 리액트네이티브아이콘
- async
- Spring
- TS
- Next.js
- 슬라이딩윈도우
- 페이지네이션
- 글또10기
- set
- app:compiledebugkotlin
- mainapplication.kt
- 이진탐색
- reactnative
- extends
- interface
- 타입스크립트
- meatadata
- app.post
- map
- 배열중복요소제거
- materialicons
- react
- javascript
- 안드로이드빌드에러
- Filter
Archives
- Today
- Total
rhanziy
node.js - mypage 기능 본문
로그인/비로그인 시 /mypage 방문 테스트를 해보자.
server.js에 작성
app.get('/mypage', isLogIn , (req, res)=>{
console.log(req.user);
res.render('mypage.ejs', { user : req.user })
})
function isLogIn (req, res, next) {
if (req.user) {
next()
}
else {
res.send('로그인 안하셨는데요?')
}
}
"요청.user 가 있으면 next()로 통과시켜주시고요, 없으면 에러메세지를 응답.send() 해주세요~"
mypage.ejs에는 간단하게 보여줘봅시다.
<p> <%= user.id %>의 마이페이지입니다.</p>
요청.user가 뭐지?!
passport.serializeUser(function (user, done) {
done(null, user.id)
});
passport.deserializeUser(function (아이디, done) {
db.collection('login').findOne({ id: 아이디 }, function (err, result) {
done(null, result)
console.log(result);
})
});
deserializeUser 라는 부분은 고객의 세션아이디를 바탕으로 이 유저의 정보를 DB에서 찾아주세요~ 역할을 하는 함수이다. 그리고 그 결과를 요청.user 부분에 꽂아줌.
그래서, 누군가 mypage로 요청시
방문자가 세션아이디 쿠키가 존재하면 deserializeUser 라는 함수 덕분에 항상 요청.user라는 데이터가 존재한다.
콘솔 찍어보면 { _id: 6417feabb7708d5b1b41f7e4, id: 'test', pw: 'test' } 이렇게 나옴
'Node.js' 카테고리의 다른 글
node.js - multer로 이미지 업로드(diskStorage) (0) | 2023.09.06 |
---|---|
node.js - 환경변수 관리(.env) (0) | 2023.03.21 |
node.js - session 방식으로 로그인 구현하기 (1) | 2023.03.20 |
node.js - method-override 라이브러리 PUT 구현 (0) | 2023.03.20 |
node.js - detail 상세페이지(params.id) (0) | 2023.03.20 |
Comments