我在mongodb有一个这样的集合
{
username:silver,
Email:sil@gmail.com,
password:silvester,
}
所以要进行身份验证我将从数据库中获取数据,然后我会检查给定的电子邮件是否存在if if statement
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框架。所以如何配置它。
答案 0 :(得分:3)
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': 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');
}
});
});
}));