标签: python mongodb pymongo
我的收藏结构是:
col1 = {'class':'12', 'roll':[1, 2, 3, 4]}
现在,我想update收集col1到
update
col1
col1 = {'class':'12', 'roll':[1, 2, 3, 4, 5]}
我在这里添加了另一个卷号,如何在pymongo中更新此集合。
答案 0 :(得分:3)
db.col1.update( { class : 12}, { $push : { roll : 5 } } )