亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Laravel5.1 框架怎么實現模型多態關聯

發布時間:2021-04-13 15:55:16 來源:億速云 閱讀:120 作者:Leah 欄目:開發技術

使用Laravel5.1 框架怎么實現模型多態關聯?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1 實現多態關聯

1.1 文章表的結構

  public function up()
  {
    Schema::create('articles', function (Blueprint $table) {
      $table->increments('id');
      $table->string('title');
      $table->text('body');$table->timestamps();
    });
  }

1.2 視頻表結構

  public function up()
  {
    Schema::create('videos', function (Blueprint $table) {
      $table->increments('id');
      $table->string('title');
      $table->text('description');
      $table->timestamps();
    });
  }

1.3 評論表結構

  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。

1.4 編寫多態關聯

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;
  }
});

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

庐江县| 和田县| 读书| 尼勒克县| 牡丹江市| 皋兰县| 安福县| 抚顺县| 博白县| 来安县| 西贡区| 永吉县| 鄂温| 资溪县| 马公市| 义乌市| 宣化县| 云霄县| 新野县| 大方县| 清苑县| 甘南县| 张家港市| 垣曲县| 沧源| 阿图什市| 宿松县| 厦门市| 溧水县| 伊金霍洛旗| 新民市| 临洮县| 英德市| 莲花县| 舟曲县| 临朐县| 大港区| 南平市| 错那县| 灌南县| 大渡口区|