我在MongoDb上有两种模型,一种用于用户,另一种用于事件。用户创建帐户并登录后,它将显示受保护的页面,可以在其中将事件添加到他们自己的配置文件中。我正在尝试使用populate(“ events”)引用事件模式以显示在用户模式上。还可以使用$ push在事件创建后将事件推送给用户。结果是:事件创建得很好,但是没有任何东西被推送到用户模型上的事件数组。使用邮递员来查看用户,它显示事件数组为空,并且我收到的响应为200,其中包含一个空对象。我在这里想念什么?这是我第一次在MongoDb上关联架构,并且无法使其正常工作。我们非常感谢您的帮助。
我尝试在{new:true}之后也添加一个回调函数,同时{safe:true,upsert:true},但没有任何变化。
这是我的一些代码:
用户模型:
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const userSchema = new Schema({
username: { type: String, required: true },
firstName: { type: String, required: true },
lastName: { type: String, required: true },
phone: { type: String },
password: { type: String },
email: { type: String, required: true },
events: [{ type: Schema.Types.ObjectId, ref: "Event" }]
});
const User = mongoose.model("User", userSchema);
module.exports = User;
事件模型:
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const eventSchema = new Schema({
title: { type: String, required: true },
start: { type: Date, required: true },
end: { type: Date, required: true },
appointment: { type: String, required: true }
});
const Event = mongoose.model("Event", eventSchema);
module.exports = Event;
路由以创建事件,然后尝试将创建的对象推送到用户的模式:
router.post("/users/:_id", function(req, res) {
Event.create({
title: req.body.title,
start: req.body.start,
end: req.body.end,
appointment: req.body.appointment
})
.then(function(dbEvent) {
return User.findOneAndUpdate(
{ _id: req.params._id },
{
$push: {
events: dbEvent._id
}
},
{ new: true }
);
})
.then(function(dbUser) {
res.json(dbUser);
})
.catch(function(err) {
res.json(err);
});
});
获取一个用户,但它将为用户返回一个空数组,用于处理事件。
router.get("/users/:_id", (req, res) => {
return User.findOne({
_id: req.params._id
})
.populate("events")
.then(function(dbUser) {
if (typeof dbUser === "object") {
res.json(dbUser);
}
});
});
谢谢。
答案 0 :(得分:0)
问题是我在单独的文件中有事件路由和用户路由,而我忘记了将User模型导入事件路由: const User = require(“ ../../ models”)。User;