mongodb - pymongo里,dict存储在list内,如何根据key-value值删除或更新该dict?
阿神
阿神 2017-04-21 11:17:36
0
2
745
{
    "title": "hello world",
    "comments": [
                    {"id": 1, "text": "text 1"},
                    {"id": 2, "text": "text 2"},
                    {"id": 3, "text": "text 3"}, 
                    ...
                ],
    "author": "",
    "views": 1000,
}

假设我现在知道某个 comment 的 id=2,想删除 comments 中 id=2 的字典,也就是 {"id": 2, "text": "text 2"} 这条数据,应该怎样写呢?

如果是更新 id=2text 的内容,又该如何写呢?

阿神
阿神

闭关修行中......

全部回覆(2)
Ty80

這個可以使用mongodb的陣列定位器,詳細:
http://www.co-ding.com/?p=274

刘奇

從mongodb命令列可以這樣刪除(pymongo基本上格式一樣了,沒測試):

db.posts.update({'_id': xxxx}, {'$pull': { 'comments': {'id': 2} }})

更新的話 寫起來看起來就沒有這麼直白了,for遍歷一下吧。 。
//或是先刪了再加進去?這樣順序可能不滿足要求了。 。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板