1

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

应用程序.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);
   }

  });
}));

人.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 变量的页面时,也会发生这种情况。

4

1 回答 1

0

使用req.user而不是req.profile

于 2014-11-19T06:58:48.660 回答