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条回答 默认 最新

      报告相同问题?

      相关推荐 更多相似问题

      悬赏问题

      • ¥15 vba代出现莫须有错误,都是一个个复制下来的为啥出错呢?
      • ¥15 /etc/vsftpd/vsftp.conf配置文件加了一行utf8_filesystem=YES之后,启动vsftpd报错
      • ¥15 W5100可以收广播,但是无法发出广播
      • ¥100 PCD点云排序和分割
      • ¥15 GG-CNN抓取数据集
      • ¥15 C++类和对象,多态性,继承,虚函数虚基类
      • ¥15 使用VS2019和Dev c++按%p输出地址,结果相差很大
      • ¥30 有偿解惑TINA老报错,求解惑
      • ¥15 arduino esp8266 编译问题
      • ¥15 metawrap画图报错