Mongoose Schema hasn't been registered for model

前端 未结 17 865
猫巷女王i
猫巷女王i 2020-11-27 15:00

I\'m learning the mean stack and when I try to start the server using

npm start

I get an exception saying that:

schema has         


        
17条回答
  •  -上瘾入骨i
    2020-11-27 15:57

    Just wanted to add that for me I was using destructuring when importing the Schema which was causing it to fail.

    Correct

    var intakeSchema = require('../config/models/intake')
    

    Incorrect

    var { intakeSchema } = require('../config/models/intake')
    

提交回复
热议问题