我試圖建立基於Python的字典mongoDB查詢。 密鑰在字典中應該是唯一的問題。 見例如MongoDB與Python查詢
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的查詢字典(或任何不需要具有唯一性的東西)鍵。
謝謝!
燁,這是正確的。感謝那 :) – KennyPowers 2012-04-19 09:29:28