错误module.exports猫鼬

我有这个Schema,当我尝试导出时,它会给出一个错误。

我的模式:

const mongoose = require('../../config/db');

const AgendaSchema = new mongoose.Schema({

  nome: {type: String},
  adress: {type: String},
  data: {type: Date},
  createdAt: {type: Date, default: Date.now}
});

module.exports = mongoose.model('Agenda', AgendaSchema);

我只需要降级到4.8.5猫鼬版本,现在它正在工作。

链接地址: http://www.djcxy.com/p/89567.html

上一篇: Error module.exports mongoose

下一篇: Why I can't retrieve any result when I use mongoose in my app