我正在学习MEAN堆栈,并希望在使用express进行路由时选择多个模型。我需要选择一个模型,然后根据它的其他几个值。 这是主要模型:
var mongoose = require('mongoose');
var MatchSchema = new mongoose.Schema({
title: String,
type: [{ type: mongoose.Schema.Types.ObjectId, ref: 'Game' }],
owner: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }],
players: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }]
});
mongoose.model('Match', MatchSchema);
基于类型所有者和玩家我需要选择游戏和用户模型,但我坚持这样做。这是我当前的路线,只选择匹配模型。
router.get('/games', function (req, res, next) {
Match.find(function (err, matches) {
if (err) {
console.log(err);
return next(err);
}
res.json(matches);
});
});
所以我需要遍历所有的比赛,并且每一个选择属于它的类型的Game模型以及属于所有者和玩家的User模型,我将如何去做?
答案 0 :(得分:0)
您可以使用嵌套代码,例如
Match.find(function (err, matches) {
if (err) {
console.log(err);
return next(err);
}
Game.find(function (err, games) {
if (err) {
console.log(err);
return next(err);
}
Users.find(function (err, user) {
if (err) {
console.log(err);
return next(err);
}
res.json({matches:matches, games:games, user:user});
});
});
});
答案 1 :(得分:0)
如果我理解你的问题是正确的,那么你必须填写你的子文件。
Mongoose有能力为你做这件事。基本上你必须做这样的事情:
router.get('/games', function (req, res, next) {
Match
.find({})
.populate('type').populate('owner').populate('players')
.exec(function (err, matches) {
if (err) return handleError(err);
res.json(matches);
});
});
有关更多信息,请查看mongoose文档:http://mongoosejs.com/docs/populate.html