为什么我不能访问猫鼬模式的方法?

Why can't I access a mongoose schema's method?

我在 Nodejs 应用程序中有这个 Mongoose 模式:

const mongoose = require('mongoose'),
    Schema = mongoose.Schema,
    sodium = require('sodium').api;

const UserSchema = new Schema({
    username: {
        type: String,
        required: true,
        index: { unique: true }
    },
    salt: {
        type: String,
        required: false
    },
    password: {
        type: String,
        required: true
    }
});

UserSchema.methods.comparePassword = function(candidatePassword, targetUser) {
    let saltedCandidate = candidatePassword + targetUser.salt;
    if (sodium.crypto_pwhash_str_verify(saltedCandidate, targetUser.password)) {
        return true;
    };
    return false;
};

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

我创建了这个路由文件。

const _ = require('lodash');
const User = require('../models/user.js'); // yes, this is the correct location

module.exports = function(app) {
    app.post('/user/isvalid', function(req, res) {
        User.find({ username: req.body.username }, function(err, user) {
            if (err) {
                res.json({ info: 'that user name or password is invalid. Maybe both.' });
            };
            if (user) {
                if (User.comparePassword(req.body.password, user)) {
                    // user login
                    res.json({ info: 'login successful' });
                };
                // login fail
                res.json({ info: 'that user name or password is invalid Maybe both.' });
            } else {
                res.json({ info: 'that user name or password is invalid. Maybe both.' });
            };
        });
    });
};

然后我使用 Postman 调用 127.0.0.1:3001/user/isvalid 并提供适当的 Body 内容。终端说告诉我 TypeError: User.comparePassword is not a function 并使应用程序崩溃。

由于 if (user) 位通过,这向我表明我已从 Mongo 正确检索文档并拥有用户模式的实例。为什么方法无效?

eta: 模块导出我原本copy/paste失败

这将创建实例方法:

UserSchema.methods.comparePassword = function(candidatePassword, targetUser) {
    // ...
};

如果你想要一个静态方法,使用这个:

UserSchema.statics.comparePassword = function(candidatePassword, targetUser) {
    // ...
};

静态方法是当你想调用它时 User.comparePassword()

实例方法是当您想将其称为 someUser.comparePassword() 时(在这种情况下,这很有意义,因此您不必显式传递用户实例)。

查看文档: