我正在使用登录系统创建一个多人游戏。在我的app.js中我有
app.use(function (req, res, next) {
res.locals.success_msg = req.flash('success_msg');
res.locals.error_msg = req.flash('error_msg');
res.locals.error = req.flash('error');
res.locals.user = req.user || null;
next();
});
使用我可以访问我的用户。当我在那里写console.log(req.user);
时,它工作正常。它显示我的用户的属性。例如:
{ __v: 0,
password: '$2a$10$fHVFeChN4xo67ioWMDfix.VOFLAbNu33xAoRb09b9QRwnmOJ389/O',
username: 'a',
email: 'example@gmail.com',
name: 'a',
_id: 5744c2b7835f90cc05d27ee5 }
但是,当我写console.log(req.user.username);
时,它会显示错误:
TypeError:无法读取undefined的属性'username'。
我会感激任何帮助。非常感谢提前!
答案 0 :(得分:0)
我找到了解决方案。我只需要将我的module.exports放在我的app.js中。