我正在使用Passport对我的用户进行身份验证,并将其信息传递给每个视图,旁边存储在用户数据库中的信息。我正在尝试传递与用户相关的友情信息(登录用户)。问题是这只适用于我的两个观点:
单用户页面
//info is the profile information of a registered user
<%= info.profile.fullname %>
<br>
<%= info.email %>
<br>
<%= info.profile.country %>
<br>
<%= user.follow %>// just for testing
<br>
<% if(user && (user._id != info.id)){ %>
<br>
<form action="/follow/<%= info._id %>" method="post">
<button type="submit">Follow</button></form>
<%}%>
<br>
<a href="/users">atras</a>
注册用户列表
<%if (user) {%>
<h1>Hola <%= user.profile.fullname %> </h1>
<%}%>
<br>
<% users.forEach(function (user) {%>
<a href="/users/<%= user._id %>"><p><%= user.profile.fullname %></p></a>
<%});%>
<%= user.follow %>// just for testing
<a href="/">Home</a>
这是我的索引,在此视图中,user.follow不起作用
<%if (!user) {%>
<a href="/signup">sign up</a>
<br>
<a href="/login">login</a>
<%} else { %>
<h1>Hola <%= user.profile.fullname %> Eres lo Maximo</h1>
<a href="/profile">perfil</a>
<br>
<a href="/logout">Logout</a>
<br>
<%}%>
<br>
<a href="/users">Lista de Usuarios</a>
<%= user.follow %>// just for testing
//in this view i got undefined
deserializeUser config。
passport.deserializeUser(function(id, done) {
User.findById(id, function(err, user) {
FF.find({ follower:id }, function(err, follow) {
user.follow = follow;
});
done(err, user);
});
});
这是我的路线代码
router.get('/', function(req, res) {
res.render('index');
});
router.get('/login', userController.getLogin);
router.post('/login', userController.postLogin);
router.get('/logout', userController.logout);
router.get('/signup', userController.getSignup);
router.post('/signup', userController.postSignup);
router.get('/profile', passportConf.isAuthenticated, userController.getAccount);
router.post('/profile', passportConf.isAuthenticated, userController.postUpdateProfile);
//Test Usuarios
router.get('/users', friendController.getListUsers);
router.get('/users/:id',friendController.getShowUser);
// Test Follow
router.post('/follow/:id', passportConf.isAuthenticated,friendController.postFollowUser);