猫鼬方法

时间:2018-06-25 10:30:28

标签: mongoose bcrypt mongoose-schema

我在使用UserSchema.pre()函数保存之前在哈希密码中的项目中使用猫鼬。它可以正常工作并加密密码。但是,当我使用UserSchema.methods.comparePassword时,它向我显示方法错误。方法已声明,但从未使用过它的值。下面是我正在使用的代码

'use strict';
    const mongoose = require('mongoose');
    const Schema = mongoose.Schema;
    const bcrypt = require('bcrypt-nodejs');

    const UserSchema = new Schema({
        company_id: String,
        branch_id: String,
        name: String,
        email : String,
        password: String,
    });

    UserSchema.pre('save', function (next) {
        var user = this;
        if(!user.isModified('password')) return next();
        if(user.password) {
            bcrypt.genSalt(10, function(err, salt) {
                if(err) return next(err);
                bcrypt.hash(user.password, salt, null, function(err, hash) {
                    if(err) return next();
                    user.password = hash;
                    next(err)
                })
            })
        }
    });

    UserSchema.methods.comparePassword = function(candidatePassword)  {
        return bcrypt.compareSync(candidatePassword, this.password);
    };

    module.exports = mongoose.model('User', UserSchema);

1 个答案:

答案 0 :(得分:0)

您可以使用。UserSchema.comparePassword方法。