0

比如说,我有以下查询:“文档电子表格应用程序*”。我想构建相当于这种类型的查询'_search?q=_all:document+spreadsheet+app*'的查询字典。比如说,query_words_list = ['document', 'spreadsheet', 'app']。我试过这个:

{
  'query': {
     'terms': {
        '_all': query_words_list[:-1] + [query_words_list[-1] + '*'],
     }
   }
}

但是,如果您比较两个查询的结果,它们是不等价的。任何提示相当于 '_search?q=_all:document+spreadsheet+app*' 的查询字典看起来像什么?提前致谢!

4

1 回答 1

1

q 参数等效于Query String Query

于 2012-11-20T23:25:34.590 回答