我收集了数据:
{
"_id": { "$oid":"5c3334a8871695568817ea26" },
"country":"Afghanistan",
"code":"af",
"region":[
{
"path":["Afghanistan"],
"_id":{"$oid":"5c3366bd3d92ac6e531dfb43"},
"name":"Badakhshan",
"city":[]
},
...
]
},
我需要在city字段内添加城市(数组)。 我的模型如下:
const schema = new mongoose.Schema({
country: { type: String },
code: { type: String },
region: [{
name: { type: String },
path: { type: Array },
city: [{
name: { type: String },
path: { type: Array },
latitude: { type: String },
longitude: { type: String },
}],
}],
})
我发送查询
Model.updateOne(
{ code: country.code },
{ $push: { 'region.city': { $each: savedCities } } },
)
.exec()
并收到错误MongoError:无法在元素{region:[..... 我怎么了 我看起来类似的主题,但找不到答案。
答案 0 :(得分:2)
您可以使用$ positional operator来指示应更新region
数组中的哪个元素,请尝试:
Model.updateOne(
{ code: country.code, 'region.name': 'Badakhshan' },
{ $push: { 'region.$.city': { $each: savedCities } } },
)