メソッドは関数ではありませんマングースメソッドの問題

Jan 03 2021

ENV:

ノードv12.19.0

mongo Atlas V4.2.11

マングースV5.11.8

###############################################

ユーザースキーマがあります

user.js

const mongoose = require('mongoose');
const bcrypt   = require('bcrypt');

const userSchema = new mongoose.Schema({
    email:{
        type: String,
        required: true,
        unique: true, 
    },
    username:{
        type: String,
        required: true,
        unique: true,
    },
    password:{
        type: String,
        required: true
    },
    profileImageUrl:{
        type: String,
    }
});

userSchema.pre('save', async function(next) {
    try{
        if(!this.isModified('password')){
            return next();
        }

        let hashedPassword = await bcrypt.hash(this.password, 10);
        this.password = hashedPassword;
        return next();

    } catch(err) {
        return next(err);
    }
});

userSchema.methods.comparePassword = async function(candidatePassword){
    try{
        return await bcrypt.compare(candidatePassword, this.password);

    } catch(err){
        throw new Error(err.message);
    }
}

userSchema.set('timestamps', true);

module.exports = mongoose.model("User", userSchema);

パスワードが変更されていないかどうかを確認してから、保存前に変更します。

パスワードをcomparePasswordというハッシュ化されたパスワードと比較するメソッドを追加しました

別のファイルでcomparePasswordメソッドを使用しようとしています

Auth.js


const db = require('../models');
const JWT = require("jsonwebtoken");
const CONFIGS = require('../config');

exports.signIn = async function(req, res, next){
    try{

        const user = db.User.findOne({
            email: req.body.email,
        });

        const { id, username, profileImageUrl } = user;
        const isMatch = await user.comparePassword(req.body.password) ; // here is a problem <====

        if(isMatch){
            const token = JWT.sign({
                id,
                username,
                profileImageUrl,
            }, CONFIGS.SECRET_KEY);
            return res.status(200).json({
                id,
                username,
                profileImageUrl,
                token,
            });
        }
        else{
            return next({
                status: 400,
                message: "Invalid email or password",
            });
        }
    }
    catch(err){
        return next(err);
    }
}
   

パスワードを事前定義されたメソッドと比較しようとすると、応答でこれが返されます

user.comparePasswordは関数ではありません

私はさまざまな解決策を見ました。

これは彼らのために働くと言う人もいます:

userSchema.method('comparePassword' , async function(candidatePassword, next){
  // the logic
})

しかし、それは機能しません。私も別の解決策を試しましたが、コードの何が問題なのかわかりません。

アップデート1:

静力学を使用してみましたが、機能しません

userSchema.statics.comparePassword = async function(candidatePassword){
    try{
        return await bcrypt.compare(candidatePassword, this.password);

    } catch(err){
        throw new Error(err.message);
    }
}

回答

AhmedGaafer Jan 04 2021 at 01:12

ではAuth.js

 const user = db.User.findOne({
            email: req.body.email,
        });

クエリが終了するのを待たなければならないので、これは間違っています。

このようになります

 const user = await db.User.findOne({
            email: req.body.email,
        });