8

使用 Mongoose.js,我的身份验证方法填充字段“companyRoles._company”,但当我尝试访问我的 req.user 对象中的相同填充字段时,填充的数据将恢复为公司参考 ID。

//Authentication 
UserSchema.static('authenticate', function(email, password, callback) {
  this.findOne({ email: email })
  .populate('companyRoles._company', ['name', '_id'])
    .run(function(err, user) {
      if (err) { return callback(err); }
      if (!user) { return callback(null, false); }
      user.verifyPassword(password, function(err, passwordCorrect) {
        if (err) { return callback(err); }
        if (!passwordCorrect) { return callback(null, false); }
        return callback(null, user);
      });
    });
});

//login post
app.post('/passportlogin', function(req, res, next) {
  passport.authenticate('local', function(err, user, info) {
    if (err) { return next(err) }
    if (!user) { return res.redirect('/passportlogin') }
    req.logIn(user, function(err) {
      if (err) { return next(err); }
      console.log('req User');
      console.log(req.user); 
      return res.redirect('/companies/' + user.companyRoles[0]._company._id);
    });
  })(req, res, next);
});

app.get('/companies/:cid', function(req, res){
    console.log('req.user in companies:cid');
    console.log(req.user);   
});

req.logIn 后,记录 req.user 显示 - companyRoles{_company: [Object]}

但是当我登录后重定向到 /companies/:id 路由时,它显示的是 id 而不是填充的 [object] - companyRoles{_company: 4fbe8b2513e90be8280001a5}

关于为什么该字段不保持填充的任何想法?谢谢。

4

2 回答 2

16

问题是我没有填充 passport.deserializeUser 函数中的字段,这是更新后的函数:

//deserialize
passport.deserializeUser(function(id, done) {
    User.findById(id)
    .populate('companyRoles._company', ['name', '_id'])
    .run(function (err, user) {
        done(err, user);
     });
});
于 2012-06-12T19:24:48.660 回答
0

看起来res.redirect您正在尝试通过将对象连接到字符串来构造 URL。我怀疑这会产生你想要的结果。您希望 URL 是什么样的?

于 2012-06-12T03:14:03.703 回答