您好,登錄后才能下訂單哦!
使用Laravel5.1 框架怎么實現模型多態關聯?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
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 它主要是區別關聯于那張表的 我們這里它只有兩個值:App\Article 或 App\Video。
Article 和 Video:
public function comments() { /** * 第二個參數:如果你的前綴是item_ 那么就寫item 如果是別的就寫別的。 * 第三個參數:item_type * 第四個參數:item_id * 第五個參數:關聯到那個表的鍵 * (以上除了第二個參數都可以省略) */ return $this->morphMany(Comment::class, 'item', 'item_type', 'item_id', 'id'); }
Comment:
public function video() { /** * 三個參數都可以省略 不過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; } });
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。