我有一个数据示例:
{
"id": "2",
"items":
{
"3" : { "blocks" : { "3" : { "txt" : 'xx' } } },
"4" : { "blocks" : { "1" : { "txt" : 'yy'}, "2" : { "txt" : 'zz'} } }
}
}
我想让它看起来像下面的示例数据。只需在items.3.blocks.3.txt中添加一个新值,同时保留其现有值:
{
"id": "2",
"items":
{
"3" : { "blocks" : { "3" : { "txt" : 'xx, tt' } } },
"4" : { "blocks" : { "1" : { "txt" : 'yy'}, "2" : { "txt" : 'zz'} } }
}
}
我在下面跑,但没有任何区别
dbx.test.update({"_id": ObjectId("5192264c02a03e374e67d7be")}, {'$addToSet': {'items.3.blocks.0.txt': 'tt'}}, )
什么应该是正确的语法,任何帮助表示赞赏... 问候
答案 0 :(得分:0)
我没有意识到这是一个mongodb | pymongo问题。
a = {
"id": "2",
"items": {
"3" : { "blocks" : { "3" : { "txt" : 'xx' } } },
"4" : { "blocks" : { "1" : { "txt" : 'yy'}, "2" : { "txt" : 'zz'} } }
}
}
a['items']['3']['blocks']['3']['txt'] += ', yy'
关于如何修改词典的简短回答:
a = {'moo' : 'cow', 'quack' : 'duck'}
a['moo'] = 'bull'
a['quack'] = 'duckling'
print(str(a))
if a['moo'] == 'bull':
print 'Yes the bull says moo'
如果您的数据是JSON字符串,首先需要将其从JSON字符串转换为Python中的字典,请执行以下操作:
import json
a = json.loads(<your string goes here>)
答案 1 :(得分:0)
您需要使用'$push'代替'$addToSet':
dbx.test.update({"_id": ObjectId("5192264c02a03e374e67d7be")}, {'$push': {'items.3.blocks.0.txt': 'tt'}}, )
答案 2 :(得分:0)
很简单,因为可以使用$ addToSet需要数组[]中的数据,但是你有{"key":"value"}
中的数据,但是你有{ "blocks" : { "1" : { "txt" : 'yy'}, "2" : { "txt" : 'zz'} } }
,会推荐在数组中工作,示例
"items":
[
{ "algo" : { "blocks" : { "txt" : ['xx']} } } ,
{ "algoo" : { "blocks" : { "txt" : ['yy','zz']} } }
]
db.foo.update({"_id":1,"items.algo.blocks.txt":'xx'},{$addToSet:{"items.$.algo.blocks.txt":'tt'}});
并且字段名称中没有使用数字。
{
"_id" : 1,
"items" : [
{
"algo" : {
"blocks" : {
"txt" : [
"xx",
"tt"
]
}
}
},
{
"algoo" : {
"blocks" : {
"txt" : [
"yy",
"zz"
]
}
}
}
]
}