最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - TypeError on static method of mongoose model - Stack Overflow

matteradmin0PV0评论

I'm using node.js along with the MongoDb driver Mongoose 3.6.1. This is my schema definition:

models/user.js

var mongoose = require('mongoose'),
    Schema = mongoose.Schema;

var userSchema = new Schema({
            ...
});

module.exports = {
    model : mongoose.model('User', userSchema)
};

userSchema.statics.doSomething = function () {
    console.log("I'm doing something");
}

Then in a separate controller, I do

controllers/another.js

var User = require("../models/user").model;

function foo() {
    User.doSomething();
}

and I get the following error

[TypeError: Object function model(doc, fields, skipId) {
       if (!(this instanceof model))
         return new model(doc, fields, skipId);
       Model.call(this, doc, fields, skipId);
     } has no method 'doSomething']

However, if I dump the User object I can see the method there, as expected. This is the relevant part of the dump confirming that

...
schema:
 { statics:
    { doSomething: [Function] }
...

Any idea on what I'm doing wrong?

I'm using node.js along with the MongoDb driver Mongoose 3.6.1. This is my schema definition:

models/user.js

var mongoose = require('mongoose'),
    Schema = mongoose.Schema;

var userSchema = new Schema({
            ...
});

module.exports = {
    model : mongoose.model('User', userSchema)
};

userSchema.statics.doSomething = function () {
    console.log("I'm doing something");
}

Then in a separate controller, I do

controllers/another.js

var User = require("../models/user").model;

function foo() {
    User.doSomething();
}

and I get the following error

[TypeError: Object function model(doc, fields, skipId) {
       if (!(this instanceof model))
         return new model(doc, fields, skipId);
       Model.call(this, doc, fields, skipId);
     } has no method 'doSomething']

However, if I dump the User object I can see the method there, as expected. This is the relevant part of the dump confirming that

...
schema:
 { statics:
    { doSomething: [Function] }
...

Any idea on what I'm doing wrong?

Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked May 21, 2013 at 5:56 Gabriele PetronellaGabriele Petronella 108k21 gold badges221 silver badges236 bronze badges 2
  • is new Schema({ = new mongoose.Schema({ ? – pfried Commented May 21, 2013 at 6:24
  • Yes it is. I forgot to include it in the snippet – Gabriele Petronella Commented May 21, 2013 at 6:25
Add a ment  | 

1 Answer 1

Reset to default 14

You need to set the static method before you create your model:

userSchema.statics.doSomething = function () {
  var User = mongoose.model('User');
  // I think 'this' also points to the User model here:
  // var User = this;
  // var user = new User(...);
  console.log("I'm doing something");
}

module.exports = {
  model : mongoose.model('User', userSchema)
};

Models are, to use the Mongoose terminology, "piled" from schemas. Once you created a model, any changes to the schema aren't propagated to the model that's derived from it.

Post a comment

comment list (0)

  1. No comments so far