MissingSchemaError: Schema hasn't been registered for model “User”

前端 未结 16 1112
别跟我提以往
别跟我提以往 2020-12-02 16:56

In my models/user.js file:

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

var userSchema = new Schema({
    (define schema         


        
16条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-02 17:29

    The error occurs because the models/user.js has not been interpreted by the time router/index.js has been loaded. One way to solve this would be to do the following:

    var mongoose = require('mongoose');
    //Load all your models
    var User = require('./../models/user.js');
    
    //Now, this call won't fail because User has been added as a schema.
    mongoose.model('User');
    

    This, however, turns out to be against best practises, which dictates that all this config stuff should happen at the start of your app.js file. Look at this example from madhums' example project

    var models_path = __dirname + '/app/models'
    fs.readdirSync(models_path).forEach(function (file) {
      if (~file.indexOf('.js')) require(models_path + '/' + file)
    })
    

    Note that he is loading his models before setting the app's router. As for the Ubuntu vs Mac issue, I believe it is because a relative path in Ubuntu has to start with ./. You just have to change it to ./../models/user.js, which works on Mac.

提交回复
热议问题