我的数据库中有以下文件
> 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 }
这导致应该传递字符串表示,而不是ObjectId
如果我想DBRef
在 pymongo 中通过 , 查找任何文档。
mongo 或 pymongo 是否只是为此进行字符串匹配(从而降低效率)?有没有更合适的方法来做参考查询?