gpt4 book ai didi

Mongoose Deep Populate 限制中间模型

转载 作者:行者123 更新时间:2023-12-01 04:58:44 32 4
gpt4 key购买 nike

我正在使用 MongooseDeepPopulate项目的包。我有 SchemaA、SchemaB、SchemaC、SchemaD。我的 SchemaD、SchemaC 连接到 SchemaB,而 SchemaB 连接到 SchemaA。

我已经这样做了。

var deepPopulate = require('mongoose-deep-populate')(mongoose);
AlbumSong.plugin(deepPopulate, {
populate: {
'song.category': {select: 'name status'},
'song.poetId': {select: 'name status'}
}
});
song是进一步与类别和诗人 ID 的联系。我成功地限制了来自 category 的字段和 poetId .但我希望限制来自中间模型的字段 song以及。我的查找查询就像
AlbumSong.find(condition)
.deepPopulate('song.category song.poetId')
// .deepPopulate('song.category song.poetId' , '_id category poetId name nameHindi invalid status') // I tried this as well to limit records from song model as well.
.exec(function(err, playlist) {
callback(err, playlist);
});

我哪里弄错了。

最佳答案

如果要限制 AlbumSong 的字段, 你可以直接使用 mongoose itself 提供的功能, 像这样:

AlbumSong.find(condition)
.select('_id category poetId name nameHindi invalid status')
.deepPopulate(...)

Here is一个简单的应用程序来演示这个想法。
架构如下所示:
var userSchema = new Schema({
name: String,
email: String
});

var CommentSchema = new Schema({
author : {type: Schema.Types.ObjectId, ref: 'User'},
title: String,
body: String
})

var PostSchema = new Schema({
title: String,
author: { type: Schema.Types.ObjectId, ref: 'User' },
comments: [{type: Schema.Types.ObjectId, ref: 'Comment'}],
body: String
});

PostSchema.plugin(deepPopulate, {
populate: {
'author': { select: 'name' },
'comments': { select: 'title author' },
'comments.author': { select: 'name' },
}
});
deepPopulate相关设置高于限制字段 author , commentscomments.author .
要获取帖子本身的帖子和限制字段,我使用:
Post.find().select('title author comments').deepPopulate('author comments.author').exec(function(err, data) {
// process the data
});

数据如下所示:
[{
"_id": "56b74c9c60b11e201fc8563f",
"author": {
"_id": "56b74c9b60b11e201fc8563d",
"name": "Tester"
},
"title": "test",
"comments": [
{
"_id": "56b74c9c60b11e201fc85640",
"title": "comment1",
"author": {
"_id": "56b74c9b60b11e201fc8563e",
"name": "Poster"
}
}
]
}]

所以对于帖子本身,我们只有 title ( body 未选中)。
对于填充的记录,所选字段也受到限制。

关于Mongoose Deep Populate 限制中间模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34786589/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com