gpt4 book ai didi

php - Elasticsearch 1.4和Drupal 7:在查询中使用数组

转载 作者:行者123 更新时间:2023-12-03 00:09:50 26 4
gpt4 key购买 nike

在PHP Drupal中,我希望发出一个在字段“field_xxx”中查找并带有几个标识的请求:id = 106 id = 105(如过滤器)。
我尝试了多种解决方案均未成功。
有人可以帮我吗?非常感谢你

$searchParams = [
'index' => 'indextest,
'type' => 'index_test',
'body' => [
'query' => [
'bool' => [
'must' => [
[ 'match' => [ 'title' => 'the cat' ] ],
[ 'match' => [ 'field_xxx' => ['106','105'] ] ],
]
]
]
]
];



$searchParams['body']['query']['match']['title'] = "Le jeu de la dame";
$searchParams['body']['query']['bool']['must']['field_support']= '106,105';

最佳答案

我认为terms查询将很有用。

看看this

关于php - Elasticsearch 1.4和Drupal 7:在查询中使用数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41809873/

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