javaScript wold 中的 doe export 是如何工作的。散列未定义的 bcryptjs

how doe export work in javaScript wold. hash undefined bcryptjs

假设我们有两个文件,user.js users.js 在 user.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.
    });
});

正在为 mongo 数据库添加图片

我认为问题出在这一行:

const hash = await User.hashPassword(result.value.password);

这意味着 User.hashPassword(result.value.password) 应该 return 承诺(但它 return 引用了错误的承诺)。

module.exports.hashPassword = (password) => {
    return hash = bcrypt.genSalt(10, function (err, salt) {
        bcrypt.hash(password, salt, function (err, hash) {});
    });
};

也许将上面的内容修改为 return promise 可能会有所帮助。像这样:

module.exports.hashPassword = (password) => {
    var salt = await bcrypt.genSalt(10);
    return bcrypt.hash(password, salt);
};

回答关于 @returns Promise If callback has been omitted 的问题:

Bcrypt 方法是异步的。这意味着他们 return 立即并在后台处理。当结果可用时,该函数通过回调函数或承诺将其提供给调用代码。

考虑文档中 genSalt 的以下 API:

genSalt(rounds, minor, cb)

rounds - [OPTIONAL] - the cost of processing the data. (default - 10)

minor - [OPTIONAL] - minor version of bcrypt to use. (default - b)

cb - [OPTIONAL] - a callback to be fired once the salt has been generated. uses eio making it asynchronous. If cb is not specified, a Promise is returned if Promise support is available.

   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 或未定义),函数 return 将改为 Promise。

 var promise = bcrypt.genSalt(rounds, minor);
 promise
     .then(function(salt){
         // Salt is available here
         console.log(salt);
     })
     .catch(function(err){
         // Handle error
     });