Mongoose:使用 _id 以外的字段填充路径
Posted
技术标签:
【中文标题】Mongoose:使用 _id 以外的字段填充路径【英文标题】:Mongoose: Populate path using field other than _id 【发布时间】:2020-07-20 04:19:22 【问题描述】:默认情况下 mongoose/mongo 将使用 _id
字段填充路径,并且似乎无法将 _id
更改为其他内容。
这是我的两个模型,它们以一对多的关系连接:
const playlistSchema = new mongoose.Schema(
externalId: String,
title: String,
videos: [
type: mongoose.Schema.Types.ObjectId,
ref: 'Video',
],
);
const videoSchema = new mongoose.Schema(
externalId: String,
title: String,
);
通常,在查询播放列表时,您会使用.populate('videos')
填充videos
,但在我的情况下,我想使用externalId
字段而不是默认的_id
。这可能吗?
【问题讨论】:
这可能会有所帮助,github.com/Automattic/mongoose/issues/…,但如果不使用 $lookup 聚合 【参考方案1】:据我所知,目前使用 mongoose 实现此目的的方法是使用 virtuals。填充虚拟时,您可以将localField
和foreignField
指定为您想要的任何内容,因此您不再绑定到默认的_id
作为foreignField
。有关此here 的更多详细信息。
对于您问题中描述的场景,您需要将虚拟添加到playerlistSchema
,如下所示:
playlistSchema.virtual('videoList',
ref: 'Video', // The model to use
localField: 'videos', // The field in playerListSchema
foreignField: 'externalId', // The field on videoSchema. This can be whatever you want.
);
现在,每当您查询播放器列表时,您都可以填充 videoList
虚拟以获取引用的视频文档。
PlaylistModel
.findOne(
// ... whatever your find query needs to be
)
.populate('videoList')
.exec(function (error, playList)
/* if a playList document is returned */
playList.videoList; // The would be the populated array of videos
)
【讨论】:
我认为它是虚拟的而不是虚拟的以上是关于Mongoose:使用 _id 以外的字段填充路径的主要内容,如果未能解决你的问题,请参考以下文章
Mongoose - 无法在路径 notification.from 上使用排序填充,因为它是文档数组的子属性