我的文档具有以下结构:
> db.orders.find().limit(1).pretty()
{
"_id" : ObjectId("5846bf0e141be215b814f64a"),
"date_add" : ISODate("2016-10-10T11:55:24Z"),
"associations" : {
"order_rows" : [
{
"product_id" : "31",
"product_quantity" : "1",
},
{
"product_id" : "133",
"product_quantity" : "1",
}
]
},
}
虽然我能够在stackoverflow上已经回答的问题的帮助下将“date_add”字段从String更改为ISODate,但我仍然坚持:
如何将“product_quantity”的字段类型更改为Integer?
我在mongo shell中尝试了以下内容:
db.orders.find().forEach(function(x){
x.associations.order_rows.product_quantity = new NumberInt(x.associations.order_rows.product_quantity);
db.orders.save(x);
});
然后我尝试使用PyMongo,虽然我能够提取文档并使用字典方法和for循环迭代列表并更改值,但我不知道如何更新文档数据库中。
mongo shell或python中的解决方案将会有很大的帮助。
感谢您的时间和精力!
答案 0 :(得分:1)
使用replace_one,将文档的_id作为标准:
from pymongo import MongoClient
collection = MongoClient().test.c
# Sort to avoid seeing a doc multiple times if the update causes it to move.
for doc in collection.find().sort('_id'):
rows = doc.get('associations', {}).get('order_rows', [])
for row in rows:
if 'product_quantity' in row:
row['product_quantity'] = int(row['product_quantity'])
collection.replace_one({'_id': doc['_id']}, doc)