我正在尝试实施智能搜索引擎这是教程链接
https://github.com/msurguy/laravel-smart-search
我知道Laravel 4的这个教程,我想在Laravel 5.2中实现
现在我被困了
我无法获得api / search的json格式
这是我的路线
Route::get('api/search', 'ApiSearchController@index');
这是我在App / http /控制器中使用Artisan的助手创建的控制器我确实尝试创建类似教程的api / searchcontroller但是它的工作总是得到错误" ApiSearchController @ index未找到& #34;
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Input;
use App\Http\Requests;
use App\Product;
use Response;
class ApiSearchController extends Controller
{
public function appendValue($data, $type, $element)
{
// operate on the item passed by reference, adding the element and type
foreach ($data as $key => & $item) {
$item[$element] = $type;
}
return $data;
}
public function appendURL($data, $prefix)
{
// operate on the item passed by reference, adding the url based on slug
foreach ($data as $key => & $item) {
$item['url'] = url($prefix.'/'.$item['slug']);
}
return $data;
}
public function index()
{
$query = e(Input::get('q',''));
if(!$query && $query == '') return Response::json(array(), 400);
$products = Product::where('published', true)
->where('name','like','%'.$query.'%')
->orderBy('name','asc')
->take(5)
->get(array('slug','name','icon'))->toArray();
$categories = Category::where('name','like','%'.$query.'%')
->has('products')
->take(5)
->get(array('slug', 'name'))
->toArray();
// Data normalization
$categories = $this->appendValue($categories, url('img/icons/category-icon.png'),'icon');
$products = $this->appendURL($products, 'products');
$categories = $this->appendURL($categories, 'categories');
// Add type of data to each item of each set of results
$products = $this->appendValue($products, 'product', 'class');
$categories = $this->appendValue($categories, 'category', 'class');
// Merge all data into one array
$data = array_merge($products, $categories);
return Response::json(array(
'data'=>$data
));
}
}
当我打开http://localhost/search/public/api/search时 我应该从教程中获取数据库中的所有数据 但是不能得到其他东西是一样的 请告诉我错误的
答案 0 :(得分:1)
您的搜索无法正常运行,因为它希望提供查询以搜索查询字符串或请求。
Input::get('q')
说要从查询字符串或请求中检索q
并将其用于搜索。
当您转到http://localhost/search/public/api/search
页时,您的GET
请求就是这样,因此需要像http://localhost/search/public/api/search?q=example
那样提供您的查询。
本教程中的示例使用AJAX运行GET
请求,为您执行上述操作。
尝试将?q=xxxx
添加到您网址的末尾,如果您已按照该教程进行了适当的设置,那么它应该有效。