3

我在 mongodb 中有一个这样的集合

{
   username:silver,
   Email:sil@gmail.com,
   password:silvester,
}

所以要进行身份验证,我将从数据库中获取数据,然后我将使用这样的 if 语句检查给定的电子邮件是否存在

app.post("/login",function(req,res){

   var email=req.body['emailid'];

   collection.find({email:sil@gmail.com}).toArray(function(err,res)
   {
      if(res.length==0){
         console.log("name is not exist");
      }else{
         if(res.email==email){
            console.log("email is exist");
         }else{
            console.log("not exist");
         }
      }
   });
});

所以在这里如何使用护照模块进行身份验证。让我通过配置示例代码知道它。我正在使用 express3.x 框架。所以如何配置它。

4

1 回答 1

3

在这里您可以阅读有关本地策略的信息,以及有关配置的信息

您的本地策略应如下所示:

passport.use(new LocalStrategy({
        emailField: 'email',
        passwordField: 'passw',
    },

    function (emailField, passwordField, done) {
        process.nextTick(function () {
            db.collection(dbCollection, function (error, collection) {
                if (!error) {
                    collection.findOne({
                        'email': sil@gmail.com
                        'password': silvester // use there some crypto function
                    }, function (err, user) {
                        if (err) {
                            return done(err);
                        }
                        if (!user) {
                            console.log('this email does not exist');
                            return done(null, false);
                        }
                        return done(null, user);
                    });
                } else {
                    console.log(5, 'DB error');
                }
            });
        });
    }));
于 2013-03-08T08:51:21.050 回答