pymongo里,dict存储在list内,如何根据key-value值删除或更新该dict?


{
    "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=2 text 的内容,又该如何写呢?

pymongo mongodb

y.nln 10 years, 6 months ago

这个可以使用mongodb的数组定位器,详细:
http://www.co-ding.com/?p=274

琉璃MKII answered 10 years, 6 months ago

Your Answer