首页 > 解决方案 > 使用 ongr-io/ElasticsearchDSL 包添加高亮

问题描述

找不到任何示例如何使用https://github.com/ongr-io/ElasticsearchDSL向查询结果添加亮点

 <?php
  require 'vendor/autoload.php'; //Composer autoload

  $client = ClientBuilder::create()->build(); //elasticsearch-php client

  $matchAll = new ONGR\ElasticsearchDSL\Query\MatchAllQuery();

  $search = new ONGR\ElasticsearchDSL\Search();
  $search->addQuery($matchAll);

  //How to highlight results in title field?

  $params = [
    'index' => 'your_index',
    'body' => $search->toArray(),
  ];

  $results = $client->search($params);

标签: phpelasticsearchongr

解决方案


 <?php
  require 'vendor/autoload.php'; //Composer autoload

  $client = ClientBuilder::create()->build(); //elasticsearch-php client

  $matchAll = new ONGR\ElasticsearchDSL\Query\MatchAllQuery();

  $search = new ONGR\ElasticsearchDSL\Search();
  $search->addQuery($matchAll);

  $higlight = new Highlight();
  $higlight->addField('title');
  $search->addHighlight($higlight);

  $params = [
    'index' => 'your_index',
    'body' => $search->toArray(),
  ];

  $results = $client->search($params);

推荐阅读