Pymongo find_one
的行为是什么?我希望这样的函数在找不到所需文档时返回None或抛出异常。但它的行为如下:
>>> q = db.find_one({'node_type': {'$regex':'impossible-condition'}})
>>> q
>>>
>>> q==1
False
>>> w==1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'w' is not defined
它会返回什么吗?以及如何安全地确定查询是否与值不匹配?
答案 0 :(得分:0)
由于find_one
是集合级操作,因此您需要实际提供要查询的集合。举个例子,我们将查看用户集合:
q = db.users.find_one({'node_type': {'$regex':'impossible-condition'}})
之后适用以下条件:find_one
返回单个文档,如果找不到匹配的文档,则返回None。