我在db
中有以下文档> db.person.find()
{ "_id" : ObjectId("1122"), "name" : "Alice", "age" : 20 }
{ "_id" : ObjectId("3344"), "name" : "Bob", "age" : 21 }
> db.article.find()
{ "_id" : ObjectId("aaaa"), "authors" : [ { "$ref" : "person", "$id" : "1122" } ] }
{ "_id" : ObjectId("bbbb"), "authors" : [ {
"$ref" : "person",
"$id" : "1122"
}, {
"$ref" : "person",
"$id" : "3344"
} ] }
这是我试图找到作者包含Bob
的文章的代码import pymongo
import bson.objectid
db = pymongo.MongoClient()['test']
bob_id = bson.objectid.ObjectId('3344')
article = db.article.find_one({ 'authors': { '$in': [ bob_id ] } })
print article
# None
article = db.article.find_one({ 'authors.$id': { '$in': [ bob_id ] } })
print article
# None
article = db.article.find_one({ 'authors.$id': { '$in': [ str(bob_id) ] } })
print article
# { article object }
如果我想在pymongo中ObjectId
找到任何文档,那么应该传递字符串表示而不是DBRef
。
mongo或pymongo是否仅为此匹配字符串(从而失去效率)?有没有更合适的方法来进行参考查询?