fastadmin 搜索时怎么让id唯一搜索,以及关联表时报错的解决办法

以前是这样写的

fastadmin 搜索时怎么让id唯一搜索,以及关联表时报错的解决办法_第1张图片

不过看了文档才知道只需要在

    protected $model = null;
    protected $relationSearch=true;
    public function _initialize()
    {
        parent::_initialize();
        $this->model = new \app\admin\model\ads\Ads;
        $position=db('ads_position')->select();
        $apps=db('apps')->where(['status'=>1])->select();
        $this->assign('apps',$apps);
        $this->assign('position',$position);
    }

只需要添加一句就可以了

protected $relationSearch=true;

 

你可能感兴趣的:(fastadmin)