欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

laravel使用elasticSearch(二)

程序员文章站 2022-07-05 08:08:48
...

将数据表的数据导入

php artisan scout:import "\App\Post"

模型类post.php

use Laravel\Scout\Searchable;
//定义索引里面的type
public function searchableAs()
{
    return 'post';
}
//定义哪些字段需要搜索
public function toSearchableArray()
{
    return [
        'title' => $this->title,
        'content' => $this->content
    ];
}

访问地址
http://localhost:9200/laravel54/post/12