0

我正在尝试编写一个查询,其中多个值应与该字段匹配。

在示例中,我尝试使用查询中的匹配字段获取所有月份的结果。我不知道的是,如何在 dsl 中编写此查询?

months = [2,3,4]
client = Elasticsearch()
    s = Search(using=client, index="namco_revenuestream")
s = s.query("match", month_period=months)
4

1 回答 1

0

您可以使用术语查询而不是match查询,如下所示:

{
  "query": {
    "terms": {
      "month_period": [2,3,4]
    }
  }
}

编辑:使用查询match

{
  "query": {
    "match": {
      "month_period": {
        "query": "2 3 4",
        "analyzer": "standard"
      }
    }
  }
}
于 2019-07-03T04:22:25.840 回答