dongmei8760 2019-04-07 11:50
浏览 90
已采纳

使用Elasticsearch的Symfony Ajax搜索栏

I want to use Elasticsearch in my Project. I have the following code:

SearchController

/**
 * @Route("/api/elasticsearch" )
 */
public function viewElasticsearch(Request $request)
{
    $query = $request->get('term');

    if (empty($query)) {
        return new JsonResponse([]);
    }

    if (substr($query, -1) !== '*') {
        $query .= '';
    }

    $finder = $this->container->get('fos_elastica.finder.app.product');
    $products = $finder->find($query);

    foreach ($products as $entity) {
        $result['results'][] = [
            'id' => $entity->getId(),
            'text' => $entity->getName(),
            'sku' => $entity->getSku(),
        ];
    }

    return new JsonResponse($result);
}

Javascript

<script>
    $('.js-data-example-ajax').select2({
        ajax: {
            url: '/product/api/elasticsearch',
            dataType: 'json',
            width: 'resolve', // need to override the changed default
            minimumResultsForSearch: -1,
            dropdownCssClass: 'select2-hidden',
            }
    });
</script>

If I call a search query through the command line :

curl -X GET 'http://localhost:9200/app/product/_search?q=*iphone*&size=500'

I get 381 results from the search above, but if I do the same search from Symfony I get 8 results. How can I do a wildcard search in Symfony ?

  • 写回答

1条回答 默认 最新

  • dongque5529 2019-04-07 15:09
    关注

    The finder of Elastichsearch is showing 10 results by default. If you want to change it you have to add a second parameter to the find method with a value you want. In my case I want to show 500 results.

    $finder = $this->container->get('fos_elastica.finder.app.product');
    $products = $finder->find($query, '500');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵