对于 Laravel/Scout 全文搜索包的终极困惑?

使用默认的方法是没问题的(如下):

public function toSearchableArray()
    {
        #_ Read Data
        $Arr_Posts = $this -> toArray();
        #_ Back to Scout
        return $Arr_Posts;
    }

但是我想加条件的话

public function toSearchableArray()
    {
        #_ Read Data
        $Arr_Posts = $this -> select(['title','content']) -> get() ->toArray();
        #_ Back to Scout
        return $Arr_Posts;
    }

就会出现如下提示:

Record at the position 6 objectID=10 is too big size=24300 bytes. Contact us if you need an extended quota
浮云间
浏览 546回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP