Laravel Scout与Algolia宏实现

时间:2018-09-12 04:13:01

标签: laravel algolia laravel-scout

我正在尝试使用插件https://github.com/algolia/laravel-scout-algolia-macros来实现Laravel Scout来实现

 $posts = Product::search('')
          ->with(['title' => $request->get('q')])
          ->get();

然后在-> with内部传递了一个数组,用于多个参数。但是上面的行抛出“未知参数标题”。看到Algolia仪表板中实际上有一个标题字段。

您如何处理此要求?搜索参数将会很多,我认为传递数组是最好的方法。

我创建了一个git代码以便于复制,下面是实现它的控制器。 https://github.com/junedc/scout-algolia-macros/blob/master/app/Http/Controllers/Api/SearchController.php

0 个答案:

没有答案