有一個(gè)實(shí)例\Illuminate\Database\Eloquent\Builder我想在實(shí)例化時(shí)(在mount生命周期掛鉤期間)保留下來,以便我可以使用它進(jìn)行查詢。問題是我無法將其設(shè)置為公共財(cái)產(chǎn),因?yàn)樗鼤?huì)拋出一個(gè)Livewire\Exceptions\PublicPropertyTypeNotAllowedException(如下所示)。我也無法將它保存在會(huì)話中,因?yàn)樗且粋€(gè) PDO 實(shí)例,并且 PDO 實(shí)例無法序列化或反序列化。大家有什么想法嗎?編輯:控制器:public function index() { $tableQuery = User::query(); return view('table', compact('tableQuery')); }表.blade.php:<livewire:table :tableQuery=$tableQuery>應(yīng)用\Http\Livewire\表:class Table extends Component{ private $tableQuery; public function mount($tableQuery){ $this->tableQuery = $tableQuery; } public function render(){ return view('livewire.table'); }}
1 回答

烙印99
TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超13個(gè)贊
你可以在里面使用模型livewire
class Table extends Component{
public $tableQuery;
public function mount(){
$this->tableQuery = User::query();;
}
public function render(){
return view('livewire.table');
}
}
- 1 回答
- 0 關(guān)注
- 146 瀏覽
添加回答
舉報(bào)
0/150
提交
取消