0

使用 Pymongo 更新具有匹配 id 和数组元素之一的单个数组项

使用 array_filters 尝试了几个 Pymongo 命令(不确定这是否仅适用于 1 个数组级别深度),但看起来没有任何更新,即使没有报告错误但更新没有发生。

更新以下内容的正确 Pymongo 命令是什么?

{
        "_id" : ObjectId("9f1a5aa4217d695e4fe56be1"),
    
        "array1" : [
                {
                        "user" : "testUser1",            
                        "age" : 30,                    
                }
        ],
}
new_age_number = 32
mongo.db.myCollection.update_one({"_id": id}, {"$set": {"array1.$[i].age": new_age_number}}, array_filters=[{"i.user":"testUser1"}],upsert=False)


update_db = mongo.db.myCollection.update({"_id": id, "array1[index].user":"testUser1"}, {"$set": {"item_list[index].age": new_age_number}}, upsert=False)

mongo.db.myCollection.save(update_db)

*index 是 for 循环中的数字

4

1 回答 1

1

在此处查看文档:https ://docs.mongodb.com/manual/reference/operator/update/positional/#update-documents-in-an-array

特别注意:

重要的

您必须将数组字段作为查询文档的一部分。

因此,如果要更新数组中的第一项:

oid = ObjectId("9f1a5aa4217d695e4fe56be1")
db.mycollection.update_one({'_id': oid, 'array1.user':  'testUser1' }, {'$set': {'array1.$.age': 32}})

如果要更新数组中的特定项:

oid = ObjectId("9f1a5aa4217d695e4fe56be1")
db.mycollection.update_one({'_id': oid, 'array1': {'$elemMatch': { 'user':  'testUser1' }}}, {'$set': {'array1.$.age': 32}})
于 2020-07-28T15:05:14.697 回答