gpt4 book ai didi

python - PyMongo 在全文搜索中选择字段

转载 作者:太空宇宙 更新时间:2023-11-04 09:01:06 25 4
gpt4 key购买 nike

各位,
我试图在 find 方法上使用 fields 参数,我得到了以下错误代码:

TypeError: __init__() got multiple values for keyword argument 'fields'

代码:

mongo.db.products.find({ '$text': { '$search': string } }, { 'score': { '$meta': 'textScore' } }, fields=('name', 'foo', 'bar',))

在没有全文搜索的情况下,fields 参数工作正常。

最佳答案

对于 pymongo,'textScore' 的“投影部分”需要以完整形式包含在“字段”规范中:

mongo.db.products.find(
{ '$text': { '$search': string } },
fields=({ 'name': 1, 'foo': 1, 'bar': 1, 'score': { '$meta': 'textScore' } )
)

关于python - PyMongo 在全文搜索中选择字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25373429/

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