我正在MEAN堆栈上构建一个相当简单的应用程序,我真的不在我的深度,特别是在涉及猫鼬时。我发现mongoose文档非常难以包裹,无法在其他任何地方找到答案。
我的问题是:我有一堆用户,这些用户有存储库,存储库有存储库提供程序(GitHub,BitBucket等)。
用户拥有许多存储库,存储库具有一种存储库类型。
我的用户文件包含以下内容:
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var UserSchema = new Schema({
name: {
type: String,
required: true
},
email: {
type: String,
required: true
},
repositories: [{
name: String,
branches: [{
name: String,
head: Boolean,
commits: [{
hash: String,
date: Date,
message: String,
contributer: String,
avatar: String
}]
}],
repoType: {
type: Schema.Types.ObjectId,
ref: 'RepoProviders'
}
}]
});
var User = mongoose.model('User', UserSchema);
module.exports = User;
// This is where the magic doesn't happen :(
User.find({ name: "John Smith"}).populate({path: 'repoType'}).exec(function (err, user) {
if (err) return handleError(err);
console.log(user);
});
RepoProvider.js包含:
var mongoose = require('mongoose');
Schema = mongoose.Schema;
var RepoProviderSchema = new Schema({
name: {
type: String,
required: true
}
});
var RepoProvider = mongoose.model('RepoProviders', RepoProviderSchema);
module.exports = RepoProvider;
我在mongo中创建用户文档并手动分配repoType id哈希(取自现有的repoType文档)。
当我在console.log用户时,repo类型被设置为id,但没有返回任何关系:
[ { _id: 5547433d322e0296a3c53a16,
email: 'john@smith.com',
name: 'John Smith',
__v: 0,
repositories:
[ { name: 'RepoOne',
repoType: 5547220cdd7eeb928659f3b8,
_id: 5547433d322e0296a3c53a17,
branches: [Object] } ] } ]
如何正确设置和查询此关系?
答案 0 :(得分:1)
您需要在populate方法中指定repoType
的完整路径:
User.find({ name: "John Smith"}).populate({path: 'repositories.repoType'}).exec(function (err, user) {
if (err) return handleError(err);
console.log(user);
});