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

{
   username:silver,
   Email:[email protected],
   password:silvester,
}

因此,要进行身份验证,我将从数据库中获取数据,然后使用if语句检查是否存在给定的电子邮件
app.post("/login",function(req,res){

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

   collection.find({email:[email protected]}).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框架.so也如何配置它。

最佳答案

Here您可以阅读有关本地策略的信息,here有关配置的信息。

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

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': [email protected]
                        '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');
                }
            });
        });
    }));

10-02 20:33