最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - .find is not a function error - Stack Overflow

programmeradmin2浏览0评论

I'm developing a node js rest server and having an issue with my Schema queries. When I hit my end points I get the error TypeError: user.find is not a function

The following is my user.js file

var {mongoose} = require('../../dbcore/mongoose');
var Schema = mongoose.Schema;

module.exports = mongoose.model('User',new Schema( {

    basicId: Schema.ObjectId,

    activePurchaseIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    activeOrderIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    paymentOptionIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    addressIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    interestIDs: {
        type: [Schema.ObjectId],
        default: []
    }

}));

and this is where it's imported/required.

var URLS = require('./urls');
var User = require('../schemas/user/user');

function init(app,mongoose) {

    app.get(URLS.USERS_URL,(req,res)=>{

        var user = new User({});

        user.find().then((users)=>{
            res.send({users});
        },(err)=>{
            res.status(400).send(err);
        });


    });



}

module.exports = init;

I was following a tutorial while writing this code and I was expecting it to work as I followed the tutorial step by step.

I'm developing a node js rest server and having an issue with my Schema queries. When I hit my end points I get the error TypeError: user.find is not a function

The following is my user.js file

var {mongoose} = require('../../dbcore/mongoose');
var Schema = mongoose.Schema;

module.exports = mongoose.model('User',new Schema( {

    basicId: Schema.ObjectId,

    activePurchaseIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    activeOrderIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    paymentOptionIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    addressIDs: {
        type: [Schema.ObjectId],
        default: []
    },

    interestIDs: {
        type: [Schema.ObjectId],
        default: []
    }

}));

and this is where it's imported/required.

var URLS = require('./urls');
var User = require('../schemas/user/user');

function init(app,mongoose) {

    app.get(URLS.USERS_URL,(req,res)=>{

        var user = new User({});

        user.find().then((users)=>{
            res.send({users});
        },(err)=>{
            res.status(400).send(err);
        });


    });



}

module.exports = init;

I was following a tutorial while writing this code and I was expecting it to work as I followed the tutorial step by step.

Share Improve this question asked Aug 29, 2018 at 21:58 Omer OzerOmer Ozer 4652 gold badges8 silver badges20 bronze badges 4
  • 1 Can you add a link to the tutorial? – Barmar Commented Aug 29, 2018 at 22:00
  • @Barmar I can't because it's on udemy. – Omer Ozer Commented Aug 29, 2018 at 22:01
  • Have you connected to the db with mongoose.connect(url)? – David Kamer Commented Aug 29, 2018 at 22:02
  • 1 Yes : var mongoose = require('mongoose'); mongoose.Promise = global.Promise; mongoose.connect('mongodb://localhost:27017'); module.exports = {mongoose}; @DavidKamer – Omer Ozer Commented Aug 29, 2018 at 22:05
Add a ment  | 

4 Answers 4

Reset to default 3

When you call var user = new User({}) you are creating a new MongoDB document based on the User model and assigning it to var user.

A single user document does not have a find() function, but your User model does.

var user = new User({});
User.find().then(...);
app.get(URLS.USERS_URL, async (req,res)=>{

    const userList = await User.find();

    if(!userList) {
      res.status(500).json({success: false});
    }
    res.send(userList);

});

Your call to the database needs to look like this:

User.find().then((users)=>{
    res.send({users});
     }).catch((err)=>{
       res.status(400).send(err);
      });

You should call it directly on the module, because mongoose will handle creation implicitly and creating a new object isn't neccesary.

I'm not sure if your schema is correctly defined, but I'm not going to say your tutorial is wrong on that. You should go into mongo shell and check if the schema was created to verify it was designed correctly.

In my case, I wrote wrong this so check your file exports module.exports = XYZ format.

PS:- I wrote like this exports.module = XYZ

发布评论

评论列表(0)

  1. 暂无评论