W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
如果你要重定向到使用從 Eloquent 模型填充「ID」參數(shù)的路由,可以簡(jiǎn)單地傳遞模型本身。ID 會(huì)被自動(dòng)提?。?/p>
// 對(duì)于具有該URI的路由: profile/{id}
return redirect()->route('profile', [$user]);
如果你想要自定義這個(gè)路由參數(shù)中的默認(rèn)參數(shù)名,需要重寫(xiě)模型實(shí)例上的 getRouteKey
方法或者指定路由參數(shù) (profile/{id:slug}
):
/**
* 獲取模型的路由鍵
*
* @return mixed
*/
public function getRouteKey()
{
return $this->slug;
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: