gpt4 book ai didi

python - MongoDB 在 python 中没有返回结果

转载 作者:行者123 更新时间:2023-12-01 05:49:38 25 4
gpt4 key购买 nike

为什么 mongodb 在 shell 中返回结果,而在 python 中却没有返回结果。

外壳:

> db.posts.find({ Body: /html/ }).count()
5524

Python 代码:

query = {"Body": '/html/'}
r = mo_db.posts.find(query)
print r.count()
> 0

所有其他查询都可以正常工作,只有 find() 可以正常工作。还有其他方法来处理斜线吗?!
我还测试了 r'/html/' 和 u'/html/'。

最佳答案

您正在查询字符串形式的值,而不是实际的正则表达式对象。/.../语法是用于构造正则表达式的 javascript 语法糖,但在 python 中,您需要使用 re 模块来完成。

试试这个:

import re
pattern = re.compile("html")
query = {"Body": pattern}
r = mo_db.posts.find(query)
print r.count()

关于python - MongoDB 在 python 中没有返回结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14822659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com