假设我们在user.js中有两个文件user.js users.js。为什么我们可以做module.exports ..我们可以在其中使用diff .js文件? "@returns Promise If callback has been omitted"
是什么意思来自bcrypt.genSalt函数?
我还有一个github回购,所以如果你有一点时间,请看看。克隆后
卡在终端
result { error: null,
value:
{ email: 'max@mail.com',
username: 'max',
password: '1234',
confirmationPassword: '1234' },
then: [Function: then],
catch: [Function: catch] }
hash undefined
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const bcrypt = require('bcryptjs');
const userSchema = new Schema({
email: String,
username: String,
password: String
});
const User = mongoose.model('user', userSchema);
module.exports = User;
module.exports.hashPassword = (password) => {
return hash = bcrypt.genSalt(10, function(err, salt) {
bcrypt.hash(password, salt, function(err, hash) {
});
});
};
在users.js中我们有
const express = require('express');
const router = express.Router();
const Joi = require('joi');
const User = require('../models/user');
const userSchema = Joi.object().keys({
email:Joi.string().email().required(),
username:Joi.string().required(),
password:Joi.string().regex(/^[a-zA-Z0-9]{3,15}$/).required(),
confirmationPassword:Joi.any().valid(Joi.ref('password')).required()
});
router.route('/register')
.get((req, res) => {
res.render('register');
})
.post(async (req, res, next) => {
try{
const result = Joi.validate(req.body,userSchema);
console.log('result',result);
if(result.error) {
req.flash('error', 'Data is not valid, please try again');
res.redirect('/users/register');
return;
//console.log('result',result);
}
// checking if email is already taken
const user = await User.findOne({'email':result.value.email });
if (user){
req.flash('error','Email is already in use');
res.redirect('/users/register');
return;
}
// console.log('hash',hash);
// Hash the password
const hash = await User.hashPassword(result.value.password);
console.log('hash',hash);
} catch(error) {
next(error);
}
});
module.exports = router;
基于bcrypt给出的例子
var bcrypt = require('bcryptjs');
bcrypt.genSalt(10, function(err, salt) {
bcrypt.hash("B4c0/\/", salt, function(err, hash) {
// Store hash in your password DB.
});
});
答案 0 :(得分:1)
我认为问题出在这一行:
const hash = await User.hashPassword(result.value.password);
这意味着User.hashPassword(result.value.password)
应该返回一个promise(但它返回对错误promise的引用)。
module.exports.hashPassword = (password) => {
return hash = bcrypt.genSalt(10, function (err, salt) {
bcrypt.hash(password, salt, function (err, hash) {});
});
};
或许修改上述内容以返回一个承诺可能会有所帮助..就像这样:
module.exports.hashPassword = (password) => {
var salt = await bcrypt.genSalt(10);
return bcrypt.hash(password, salt);
};
回答有关@returns Promise If callback has been omitted
的问题:
Bcrypt方法是异步的。这意味着他们立即返回并在后台处理。当结果可用时,该函数通过回调函数或promise使其可用于调用代码。
从文档中考虑genSalt
的以下API:
genSalt(rounds,minor,cb)
轮次 - [可选] - 处理数据的成本。 (默认 - 10)
minor - [可选] - 要使用的次要版本的bcrypt。 (默认 - b)
cb - [可选] - 一旦生成盐就会被触发的回调。使用eio使其异步。如果未指定cb,则在Promise支持可用时返回Promise。
err - First parameter to the callback detailing any errors. salt - Second parameter to the callback providing the generated salt.
所说的genSalt
可以带三个参数:genSalt(rounds, minor, cb)
使用回调的示例
如果调用代码通过回调想要结果,它可以传递一个看似function(err, salt){}
的函数作为cb
参数。
bcrypt.genSalt(rounds, minor, function(err, salt){
if(err){
//Handle error
return;
}
// Salt is available here
console.log(salt);
});
使用承诺的示例
如果未传递cb参数(null或undefined),则该函数返回Promise。
var promise = bcrypt.genSalt(rounds, minor);
promise
.then(function(salt){
// Salt is available here
console.log(salt);
})
.catch(function(err){
// Handle error
});