我有一个深度嵌套的文档结构,如下所示:
{id: 1,
forecasts: [ {
forecast_id: 123,
name: "Forecast 1",
levels: [
{ level: "proven",
configs: [
{
config: "Custom 1",
variables: [{ x: 1, y:2, z:3}]
},
{
config: "Custom 2",
variables: [{ x: 10, y:20, z:30}]
},
]
},
{ level: "likely",
configs: [
{
config: "Custom 1",
variables: [{ x: 1, y:2, z:3}]
},
{
config: "Custom 2",
variables: [{ x: 10, y:20, z:30}]
},
]
}
]
},
]
}
我正在尝试更新集合以插入新配置,如下所示:
newdata = {
config: "Custom 1",
variables: [{ x: 111, y:2222, z:3333}]
}
我在 mongo ( 在 Python 中) 尝试这样的事情:
db.myCollection.update({"id": 1,
"forecasts.forecast-id": 123,
"forecasts.levels.level": "proven",
"forecasts.levels.configs.config": "Custom 1"
},
{"$set": {"forecasts.$.levels.$.configs.$": newData}}
)
不过,我收到“如果没有包含数组的相应查询字段,则无法应用位置运算符”错误。在 mongo 中执行此操作的正确方法是什么?这是 mongo v2.4.1。