我的收藏结构是:
col1 = {'class':'12', 'roll':[1, 2, 3, 4]}
现在,我想将集合col1更新为
col1 = {'class':'12', 'roll':[1, 2, 3, 4, 5]}
我在此处添加了另一个编号,即如何在pymongo中更新此收藏集.
解决方法:
db.col1.update( { class : 12}, { $push : { roll : 5 } } )
2022-12-22 08:24:59
我的收藏结构是:
col1 = {'class':'12', 'roll':[1, 2, 3, 4]}
现在,我想将集合col1更新为
col1 = {'class':'12', 'roll':[1, 2, 3, 4, 5]}
我在此处添加了另一个编号,即如何在pymongo中更新此收藏集.
解决方法:
db.col1.update( { class : 12}, { $push : { roll : 5 } } )