我的身份验证系统返回undefined

时间:2013-06-19 07:08:28

标签: javascript node.js express mongoose passport.js

我有一个使用护照的身份验证系统,我不知道为什么但它返回'undefined' 价值,有人可以帮助我,以下是我的代码:

app.js

passport.use(new LocalStrategy(function (username, password, done) {
  Person.findOne({ 'account.username' : username }, function (err, person) {

   if (err) {
     return done(err);
   }

   if (!profile) {
     return done(null, false, { message: 'Invalid username or password' });
   }

   // My self defined function that encrypts the password
   var encryptedPassword = myFunc.encrypt(password);

   if (person.account.password !== encryptedPassword) {
     return done(null, false, { message: 'Invalid username or password' });
   } else {
     return done(null, profile);
   }

  });
}));

person.js

//POST: /login
app.post('/login', passport.authenticate('local', {failureRedirect: '/login',
  failureFlash: true}), 
    function (req, res) {
      console.log(req.profile);
      res.redirect('/home');
    }
  );

//GET: /home
app.get('/home', function (req, res) {
  console.log(req.profile);  // Returns Undefined
});

当我渲染具有req.profile变量的页面时,也会发生这种情况。

1 个答案:

答案 0 :(得分:0)

使用 req.user 而不是 req.profile