第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

Laravel Eloquent 與不同外鍵的關(guān)系

Laravel Eloquent 與不同外鍵的關(guān)系

PHP
ABOUTYOU 2023-07-08 16:19:49
Laravel 版本是 7.0:我已經(jīng)設(shè)置了這樣的模型關(guān)系。<?phpnamespace App;class Template extends Model{    protected $fillable = ['header_id', 'content', 'name'];    public function header()    {        return $this->belongsTo('App\Header', 'header_id');    }}在控制器中,我可以獲取帶有標(biāo)題的模板對(duì)象。<?phpnamespace App\Http\Controllers;use App\Template;class TemplateController extends Controller{   public function show($id)   {     $template = Template::find($id);   }}現(xiàn)在我可以$template->header在視圖中使用了。如何傳遞不同的 header_id 并獲取標(biāo)頭關(guān)系對(duì)象?我想這樣做:<?phpnamespace App\Http\Controllers;use App\Template;class TemplateController extends Controller{   public function show($id, $temp_header_id)   {     $template = Template::find($id);     $template->header_id = $temp_header_id;   }}我想在視圖中獲得新的標(biāo)題關(guān)系:當(dāng)我在視圖中執(zhí)行操作時(shí),有什么方法可以返回新的標(biāo)頭關(guān)系$template->header。謝謝
查看完整描述

1 回答

?
湖上湖

TA貢獻(xiàn)2003條經(jīng)驗(yàn) 獲得超2個(gè)贊

是的,您可以做您想做的事情,但有點(diǎn)破壞數(shù)據(jù)庫中的關(guān)系。您可以分配任何 id $template->header_id,然后使用該新值加載關(guān)系:


$template->header_id = 897;


// load the relationship, will use the new value

// just in case the relationship was already loaded we make sure

// to load it again, since we have a different value for the key

$template->load('header'); 


$template->header; // should be header with id = 897


查看完整回答
反對(duì) 回復(fù) 2023-07-08
  • 1 回答
  • 0 關(guān)注
  • 156 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)