gpt4 book ai didi

node.js - 将元素插入嵌套数组 mongoose nodejs

转载 作者:行者123 更新时间:2023-12-03 12:16:12 24 4
gpt4 key购买 nike

我正在尝试将一个新元素推送到一个数组中,我在基于 express/nodejs 的 api 上使用了 Mongoose 。这是 Mongoose 的代码:

Serie.updateOne({'seasons.episodes.videos._id': data._id}, {$push: {'seasons.episodes.videos.$.reports': data.details}},
function(err) {
if (err) {
res.status(500).send()
console.log(err)
}
else res.status(200).send()
})

至于我的系列模型,它看起来像这样:
const serieSchema = new mongoose.Schema({
name: {type: String, unique:true, index: true, text: true},
customID: {type: Number, required: true, unique: true, index: true},
featured: {type: Boolean, default: false, index: true},
seasons: [{
number: Number,
episodes: [{number: Number, videos: [
{
_id: ObjectId,
provider: String,
reports: [{
title: {type: String, required: true},
description: String
}],
quality: {type: String, index: true, lowercase: true},
language: {type: String, index: true, lowercase: true},
}
]}]
}],
});

当我执行我的代码时,我得到 MongoDB 错误代码 16837,它说“不能使用部分(季节的季节.episodes.videos.0.reports)来遍历元素(我的元素在 json 上)”

我已经尝试了许多其他查询来解决这个问题,但都没有奏效,我希望有人能解决这个问题。

最佳答案

在您的查询中,您使用的是 位置运算符 ($ 符号) 通过 _id 本地化一个特定的视频,然后您想将一个项目推送到报告。

问题是 MongoDB 不知道您要更新哪个视频,因为您指定的路径 (seasons.episodes.videos.$.reports) 包含另外两个数组(seasons 和 episodes)。

正如文档所述,您不能多次使用此运算符

The positional $ operator cannot be used for queries which traverse more than one array, such as queries that traverse arrays nested within other arrays, because the replacement for the $ placeholder is a single value



此限制使您的情况复杂化。您仍然可以更新您的报告,但您需要知道外部数组的确切索引。因此,以下更新将是工作示例:
db.movies.update({'seasons.episodes.videos._id': data._id}, {$push: {'seasons.0.episodes.0.videos.$.reports': data.details}})

或者,您可以在 node.js 中更新本文档的大部分内容,或者在牢记技术限制的情况下重新考虑您的架构设计。

关于node.js - 将元素插入嵌套数组 mongoose nodejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47511061/

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