使用过滤器参数在Mongo中执行文本搜索

时间:2018-12-13 21:33:48

标签: mongodb text-search

目标

等效的MongoDB:
SELECT (text_matches of "pies") FROM table WHERE (published = "true")

我在想什么

db.find({ $text: { $search: searchTerm } }, {published: "true"})

我无法确定参数{published: "true"}在查询中的位置,也无法在docs上找到任何示例

1 个答案:

答案 0 :(得分:-1)

db.find({ published: "true", $text: { $search: searchTerm }})