在nodejs的猫鼬模型中,user.find不是函数 [英] user.find is not a function, in mongoose model in nodejs

查看:65
本文介绍了在nodejs的猫鼬模型中,user.find不是函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

user.find不是函数,我的模型是:

user.find is not a function, my model is:

var mongoose=require("mongoose");
var Schema = mongoose.Schema;
var UserSchema = new Schema({
    f_name : String,
    l_name : String
});

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

推荐答案

架构模型没有错.该错误将出现在您使用用户的代码中.您没有在查询中提及.

There is nothing wrong with the schema model. The error will be present in the code where you used User. You hadn't mentioned that in your query.

关于find()的最基本的事情是,find()函数属于模型而不是架构.因此,您需要运行一个模型,然后在其上使用查找.

The very basic thing about find() is that, find() function belongs to a model, not to a schema. So you need to run a model and then use find on it.

这篇关于在nodejs的猫鼬模型中,user.find不是函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆