本文實例講述了Laravel5.1 框架模型多態(tài)關(guān)聯(lián)用法。分享給大家供大家參考,具體如下:
什么是多態(tài)關(guān)聯(lián)? 一個例子你就明白了:好比如說評論 它可以屬于視頻類 也可以屬于文章類,當有個需求是 從評論表中取到視頻類的數(shù)據(jù),這就需要用到多態(tài)關(guān)聯(lián)了。
簡單的一句話總結(jié):一張表對應(yīng)兩張表。
public function up() { Schema::create('articles', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->text('body');$table->timestamps(); }); }
public function up() { Schema::create('videos', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->text('description'); $table->timestamps(); }); }
public function up() { Schema::create('comments', function (Blueprint $table) { $table->increments('id'); $table->text('content'); $table->integer('item_id'); $table->string('item_type'); $table->timestamps(); }); }
↑ 這里需要指定 item_id 和 item_type 單一介紹一下 item_type 它主要是區(qū)別關(guān)聯(lián)于那張表的 我們這里它只有兩個值:App\Article 或 App\Video。
Article 和 Video:
public function comments() { /** * 第二個參數(shù):如果你的前綴是item_ 那么就寫item 如果是別的就寫別的。 * 第三個參數(shù):item_type * 第四個參數(shù):item_id * 第五個參數(shù):關(guān)聯(lián)到那個表的鍵 * (以上除了第二個參數(shù)都可以省略) */ return $this->morphMany(Comment::class, 'item', 'item_type', 'item_id', 'id'); }
Comment:
public function video() { /** * 三個參數(shù)都可以省略 不過K建議你還是寫全 */ return $this->morphTo('item', 'item_type', 'item_id'); }
使用:
Route::get('/', function () { $video = App\Video::find(8); foreach ($video->comments as $comment) { echo $comment->id . ": " . $comment->item_type; } });
更多關(guān)于Laravel相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Laravel框架入門與進階教程》、《php優(yōu)秀開發(fā)框架總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家基于Laravel框架的PHP程序設(shè)計有所幫助。
標簽:宜賓 南陽 婁底 湛江 黃南 銅川 寶雞 鎮(zhèn)江
巨人網(wǎng)絡(luò)通訊聲明:本文標題《Laravel5.1 框架模型多態(tài)關(guān)聯(lián)用法實例分析》,本文關(guān)鍵詞 Laravel5.1,框架,模型,多態(tài),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。