有人可以向我详细解释为什么/ profile的路由可以访问用户对象。我目前正在学习JavaScript和NodeJS,您的回答将对我的学习产生很大的帮助。谢谢。
app.post('/login',function (req, res) {
let email = req.body.email;
let password = req.body.password;
User.getUserByEmail(email, (err, user) => {
if (err) throw err;
if (!user) {
return res.json({
success: false,
message: "User not found!"
});
}
User.comparePassword(password, user.password, (err, isMatch) => {
if (err) throw err;
if (isMatch) {
var token = jwt.sign(user.toJSON(), config.JWT_SECRET, {
expiresIn: '15m'
});
res.json({
success: true,
token: token,
user: {
id: user._id,
email: user.email
}
});
} else {
return res.json({
success: false,
message: "Password incorrect!"
});
}
})
});
});
app.get('/profile', passport.authenticate('jwt', {
session: false
}), (req, res) => {
res.json({user: req.user});
});
答案 0 :(得分:0)
这是因为您的passport.authenticate()
呼叫将user
填充到req
。
来自passports.org:
app.post('/login',
passport.authenticate('local'),
function(req, res) {
// If this function gets called, authentication was successful.
// `req.user` contains the authenticated user.
res.redirect('/users/' + req.user.username);
});
除了您的路径和身份验证方法不同之外,您的路由也相同。
有关更多信息,请参见文档:http://www.passportjs.org/docs/authenticate/
答案 1 :(得分:0)
app.get
使用url
作为签名的(req, res, next) => {}
和一个或多个回调req
对象,它将“传播” 到下一个回调next
passport.authenticate('jwt', {sessions: false})
的调用会返回回调,该回调在您发送json
响应之前执行。req
对象中。req
将“传播” 到下一个回调。这就是为什么当您发送json
响应时,该响应req
已经包含user
键