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
];
}
下一篇: 电脑上弹出老板经典大全