我正在尝试基于 python 的字典构建 mongoDB 查询。密钥在dicts中应该是唯一的问题。看例子
MongoDB数据:
{
"_id" : ObjectId("4dcd3ebc9278000000005158"),
col1 : 'foo'
}
{
"_id" : ObjectId("4dcd3ebc9278000000005159"),
col1 : 'bar'
}
Python代码:
dict = {'col1': 'foo'}
dict.update({'col1': 'bar'})
db.test.find(dict)
仅显示一行col1=='bar'
>>> dict
{'col1': 'bar'}
如何使用不需要唯一键的字典(或任何东西)构建正确的 MongoDB 查询。
谢谢!