第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在具有數(shù)組字段的彈性搜索中進(jìn)行搜索?

如何在具有數(shù)組字段的彈性搜索中進(jìn)行搜索?

PHP
ITMISS 2023-08-06 15:54:09
我的索引彈性搜索文檔包含一個(gè)數(shù)組字段。例如汽車的功能。{"features": [ "Anti-Lock Brakes",              "Alarm",               "Air Bag Driver",              "Cruise Control",               "Satellite Navigation"'}如何搜索包含給定數(shù)組中的值的文檔。例如:我想檢查包含“衛(wèi)星導(dǎo)航”和“巡航控制”等功能的汽車。我嘗試了以下方法,但它不起作用(php代碼)public function index(Request $request, Client $search, SerializerInterface $serializer): JsonResponse   ...    $search_query = ["Satellite Navigation", "Cruise Control"]      $filters = [];    $filters[] = [                   'terms' => [                       'features' => $search_query,                   ]               ];    $results = $search->search([               'index' => 'cars',               'body' => [                   'from' => $offset,                   'size' => self::PAGE_WINDOW,                   'query' => [                       "bool" => [                           "must" => [                               "match_all" => new \stdClass()                           ],                           "filter" => $filters                       ]                   ]               ]           ]);...我想獲得有關(guān)如何設(shè)置 $filters 的提示,以便獲得所需的結(jié)果。
查看完整描述

1 回答

?
慕絲7291255

TA貢獻(xiàn)1859條經(jīng)驗(yàn) 獲得超6個(gè)贊

由于您沒(méi)有映射features并且正在添加索引數(shù)據(jù),因此會(huì)生成默認(rèn)映射。


features嘗試下面的搜索查詢,這將返回包含以下內(nèi)容的所有文檔'Satellite navigation':'Cruise control'


搜索查詢:


{

  "query": {

    "bool": {

      "must": [

        {

          "match_phrase": {

            "features": "Satellite Navigation"

          }

        },

        {

          "match_phrase": {

            "features": "Cruise Control"

          }

        }

      ]

    }

  }

}

搜索結(jié)果:


"hits": [

      {

        "_index": "my-index",

        "_type": "_doc",

        "_id": "1",

        "_score": 1.7178956,

        "_source": {

          "features": [

            "Anti-Lock Brakes",

            "Alarm",

            "Air Bag Driver",

            "Cruise Control",

            "Satellite Navigation"

          ]


查看完整回答
反對(duì) 回復(fù) 2023-08-06
  • 1 回答
  • 0 關(guān)注
  • 104 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)