最佳答案
假设我插入文档。
post = { some dictionary }
mongo_id = mycollection.insert(post)
现在,假设我想添加一个字段并对其进行更新。我该怎么做?这好像不管用... ..。
post = mycollection.find_one({"_id":mongo_id})
post['newfield'] = "abc"
mycollection.save(post)