node.js - Mongoose 类型错误 : User is not a constructor

标签 node.js mongodb express mongoose mongoose-schema

我正在尝试使用 Mongoose 和 MongoDB 将子文档添加到父架构,但是我被抛出以下错误:

TypeError: User is not a constructor

这是基于 Mongoose 在 subdocuments 上的文档我认为一切都是一样的。我该如何进一步调试?

路由器

// Add a destination to the DB
router.post('/add', function(req, res, next) {
  let airport = req.body.destination
  let month = req.body.month
  let id = (req.user.id)

  User.findById(id , function (err, User) {
    if (err) return handleError(err)

    function addToCart (airport, month, id) {
      var user = new User ({
        destinations: [(
          airport = '',
          month = ''
        )]
      })

      dog.destinations[0].airport = airport
      dog.destinations[0].month = month
      dog.save(callback)
      res.status(200).send('added')
    }
    addToCart()
  })
  console.log(airport)
})

架构

var destinationSchema = new Schema({
  airport: String,
  month: String
})

// Define the scheme
var User = new Schema ({
  firstName: {
    type: String,
    index: true
  },
  lastName: {
    type: String,
    index: true
  },
  email: {
    type: String,
    index: true
  },
  homeAirport: {
    type: String,
    index: true
  },
  destinations: [destinationSchema]
})


User.plugin(passportLocalMongoose)

module.exports = mongoose.model('User', User)

最佳答案

JavaScript 对变量名区分大小写。您有 User 模型和具有相同名称的 User 结果。

您的代码将适用于以下更改:

   User.findById(id , function (err, user) {
/*                                   ^ use small `u` */
       if (err) return handleError(err)

/* rest of your code */

另外请记住,在您的代码中,您将声明另一个名为 user 的变量。您需要将其更改为不同的内容。

关于node.js - Mongoose 类型错误 : User is not a constructor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40774997/

相关文章:

javascript - 用下划线或其他东西组合 2 个 MongoDB 集合对象?

php - 无法将数据插入多个数据库 Codeigniter(MongoDB 和 MySQL)

javascript - 无法加载样式并执行脚本 Express JS

node.js - 使用 Express.js/Node.js 安全下载文件

node.js - nodejs 对所有请求执行通用操作

node.js - 捕获所有路线,除了/登录

node.js - 根据服务器上的 X 时间将用户移动到不同的角色

mongodb - 从 MongoDB 中的数组中选择不同的值

javascript - 403 响应代码 - 使用 Cowin setu API 时请求被阻止

javascript - 手动验证 SSL 自签名证书签名 - javascript