PHP code example of shopwwi / webman-scout

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();
});

$goods = Goods::search('webman')->raw();

    $goods = Goods::search('webman')
    ->within('goods_desc')
    ->get();

    use app\model\Goods;
    
    $goods = Goods::search('webman')->where('status', 1)->get();
    //你可以使用 whereIn 方法将结果限制在给定的一组值上:
   
    $goods = Goods::search('webman')->whereIn(
    'status', ['paid', 'open']
    )->get();

    use app\model\Goods;
    
    $goods = Goods::search('webman')->paginate();

    $goods = Goods::search('webman')->paginate(15);
    // 亦可指定参数
    $goods = Goods::search('webman')->paginate(request()->input('page',1),'page',request()->input('limit',10));

    'soft_delete' => true,

    use app\model\Goods;
    
    // 检索结果包括已删除记录
    $goods = Goods::search('webman')->withTrashed()->get();
    
    // 仅检索已删除记录...
    $goods = Goods::search('webman')->onlyTrashed()->get();


composer 

composer 

php webman scout:index 'goods'

php webman scout:delete-index 'goods'

php webman scout:flush 'app\model\Goods'