1. Go to this page and download the library: Download shopwwi/webman-scout library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
shopwwi / webman-scout example snippets
namespace app\model;
use Illuminate\Database\Eloquent\Model;
use Shopwwi\WebmanScout\Searchable;
class Goods extends Model
{
use Searchable;
/**
* 与模型关联的表名 后缀不带s的必须设置 默认是带s的
*
* @var string
*/
protected $table = 'goods';
/**
* 获取与模型关联的索引的名称。
* 如果不存在该类 则默认为表名
* @return string
*/
public function searchableAs()
{
return 'posts_index';
}
}
namespace app\model;
use Illuminate\Database\Eloquent\Model;
use Shopwwi\WebmanScout\Searchable;
class Goods extends Model
{
use Searchable;
/**
* 获取模型的可索引的数据。
*
* @return array
*/
public function toSearchableArray()
{
$array = $this->toArray();
// 自定义数据数组...
return $array;
}
}
namespace app\model;
use Illuminate\Database\Eloquent\Model;
use Shopwwi\WebmanScout\Searchable;
class Goods extends Model
{
use Searchable;
/**
* 获取用于索引模型的值
*
* @return mixed
*/
public function getScoutKey()
{
return $this->email;
}
/**
* 获取用于索引模型的键名
*
* @return mixed
*/
public function getScoutKeyName()
{
return 'email';
}
}
namespace app\model;
use Illuminate\Database\Eloquent\Model;
use Shopwwi\WebmanScout\Searchable;
class Goods extends Model
{
use Searchable;
use Shopwwi\WebmanScout\Attributes\SearchUsingFullText;
use Shopwwi\WebmanScout\Attributes\SearchUsingPrefix;
/**
* 获取模型的可索引数据数组。
*
* @return array
*/
#[SearchUsingPrefix(['id', 'email'])]
#[SearchUsingFullText(['bio'])]
public function toSearchableArray()
{
return [
'id' => $this->id,
'name' => $this->name,
'email' => $this->email,
'bio' => $this->bio,
];
}
}
namespace app\model;
use Illuminate\Database\Eloquent\Model;
use Shopwwi\WebmanScout\Searchable;
class Goods extends Model
{
use Searchable;
/**
* 在使所有模型都可搜索时,修改用于检索模型的查询。
*
* @param \Illuminate\Database\Eloquent\Builder $query
* @return \Illuminate\Database\Eloquent\Builder
*/
protected function makeAllSearchableUsing($query)
{
return $query->with('author');
}
}
use app\model\Goods;
$goods = new Goods;
// ...
$goods->save();
use app\model\Goods;
Goods::where('price', '>', 100)->searchable();
$goods->images()->searchable();
$goods->searchable();
use app\model\Goods;
$goods = Goods::find(1);
// 更新商品...
$goods->save();
Order::where('price', '>', 100)->searchable();
$user->orders()->searchable();
$orders->searchable();
use app\model\Goods;
$goods = Goods::find(1);
// 更新商品...
$goods->delete();
Order::where('price', '>', 100)->unsearchable();
$user->orders()->unsearchable();
$orders->unsearchable();
use app\model\Goods;
Goods::::withoutSyncingToSearch(function () {
// 执行模型操作...
});
/**
* 确定模型是否可搜索
*
* @return bool
*/
public function shouldBeSearchable()
{
return $this->isOnline();
}
use app\model\Goods;
$goods = Goods::search('webman')->get();
use app\model\Goods;
use support\Request;
Route::get('/search', function (Request $request) {
return Goods::search($request->search)->get();
});