我是Promises的新手,不知道如何解决这个问题: 我正在做一个身份验证系统,我的第一个电话是检查数据库上的电子邮件。如果用户存在,则根据加密的密码检查密码...我正在使用此lib作为bcrypt:https://npmjs.org/package/bcrypt这不是promises兼容的,所以我使用“promisify”进行以下签名:compare(密码,crypted_password,回调)。
所以这是我的代码:
var compare = Promise.promisify(bcrypt.compare);
User.findByEmail(email)
.then(compare()) <--- here is the problem
这是我的findByEmail方法:
User.prototype.findByEmail = function(email) {
var resolver = Promise.pending();
knex('users')
.where({'email': email})
.select()
.then(function(user) {
if (_.isEmpty(user)) { resolver.reject('User not found'); }
resolver.fulfill(user);
});
return resolver.promise;
}
在这种情况下,如何为“compare”方法分配多个值?我错过了承诺的意义吗?
答案 0 :(得分:5)
.then(compare()) <--- here is the problem
then
method确实期望一个返回另一个promise [或一个普通值]的函数,所以你需要传递compare
而不调用它。如果需要指定参数,请使用包装函数表达式:
User.findByEmail(email)
.then(function(user) {
return compare(/* magic */);
}).…
答案 1 :(得分:4)
我做了Bergi所说的并且适合我的事情:
this.findByEmail(email)
.then(function(user) {
return compare(password, user.password);
})