摘要:多態關聯在網站開發的過程中經常會遇到評論商品,評論文章評論店鋪等等在處理這樣的需求的時候經常會新建一張評論表然后通過一個字段來區分評論的對象開發過程如下新建表操作表字段評論對象評論對象的評論內容做數據遷移造數據用戶為和的用戶
Laravel 多態關聯(morphTo,morphMany)
在網站開發的過程中,經常會遇到 評論商品,評論文章, 評論店鋪 等等,在處理這樣的需求的時候, 經常會新建一張 評論表, 然后通過 一個 type字段來區分 評論的對象 開發過程如下:
新建表操作
php artisan make:model Models/Comments -m
表字段:
public function up() { Schema::create("comments", function (Blueprint $table) { $table->increments("id"); $table->timestamps(); $table->integer("member_id"); $table->string("comment_object_type"); # 評論對象 $table->integer("comment_object_id"); # 評論對象的id $table->text("comment_content"); # 評論內容 $table->tinyInteger("status"); }); }
做數據遷移:
php artisan migrate
造數據
用戶 ID 為2和4 的用戶對 商品ID 為 1,2,3,4的商品進行評論:
INSERT INTO `comments`(`member_id`,`comment_object_type`,`comment_object_id`,`status`,`created_at`,`updated_at`) VALUES (2,"AppModelsGoods",1,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"), (2,"AppModelsGoods",2,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"), (2,"AppModelsGoods",3,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"), (2,"AppModelsGoods",4,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"), (4,"AppModelsGoods",3,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"), (3,"AppModelsGoods",4,0,"2018-09-07 15:58:04","2018-09-07 15:58:04")
2.用戶ID 為2 的用戶 對 店鋪ID 為 1,4 的 店鋪進行了評論
INSERT INTO `comments`(`member_id`,`comment_object_type`,`comment_object_id`,`status`,`created_at`,`updated_at`) VALUES (2,"AppModelsStores",1,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"), (2,"AppModelsStores",4,0,"2018-09-07 15:58:04","2018-09-07 15:58:04"),
查詢
數據造完畢, 接下來要做查詢,查詢一下 商品id為2的 所有評論, 并且查詢出評論人的信息
普通查詢:
public function comment_list(Requset $request, Goods $goods) { # 查詢商品的所有評論 $comments = Comment::where("comment_object_type",Goods::class)->where("comment_object_id",$goods->id)->get(); if($comments) { foreach($comments as $comment) { $comment->member = Member::find("id",$comment->member_id) } } dd($comments) }
普通連表查
Comment.php 文件
# Comment model 文件修改 # 查找評論的用戶的信息 public function member() { return $this->belongsTo(Member::class, "comment_member_id"); }
需求的查詢
public function comment_list(Requset $request, Goods $goods) { # 查詢商品的所有評論 $comments = Comment::where("comment_object_type",Goods::class)->where("comment_object_id",$goods->id)->get(); # 省掉了 循環 在模板遍歷的時候 直接調用 $item->member 查看用戶信息 dd($comments) }
多態查詢
Comment.php 文件
# Comment model 文件修改 # 評論對象 public function comment_object() { return $this->morphTo(); } # 查找評論的用戶的信息 public function member() { return $this->belongsTo(Member::class, "comment_member_id"); }
Goods.php 文件
# 商品關聯評論 public function comments() { return $this->morphMany(Comment::class,self::class,"comment_object_type","comment_object_id"); }
需求的查詢
public function comment_list(Requset $request, Goods $goods) { # 查詢商品的所有評論 $comments =$goods->comments()->with("member")->paginate(15); dd($comments) }
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/31067.html
摘要:模型資料庫遷移儲存紀錄在及之間建立關聯在及之間建立關聯取得紀錄取得取得一對多關聯示例細節在此示例中,我們有兩個模型小偷和車,和兩張表和。業務規則小偷可以偷走多輛車。關系圖關聯詳情關聯表應該保存駕駛員和汽車。 showImg(https://segmentfault.com/img/remote/1460000016043938); 一張 Laravel’s Eloquent ORM 5...
摘要:正確做法是給加索引,還有聯合索引,并不能避免全表掃描。 前言:有收獲的話請加顆小星星,沒有收獲的話可以 反對 沒有幫助 舉報三連 有心的同學應該會看到我這個noteBook下面的其它知識,希望對你們有些許幫助。 本文地址 時間點:2017-11 一個16年畢業生所經歷的php面試 一、什么是面試 二、面試準備 1. 問:什么時候開始準備? 2. 問:怎么準備? 三、面試...
摘要:為關聯關系設置約束子模型的等于父模型的上面設置的字段的值子類實現這個抽象方法通過上面代碼看到創建實例時主要是做了一些配置相關的操作,設置了子模型父模型兩個模型的關聯字段和關聯的約束。不過當查詢父模型時,可以預加載關聯數據。 Database 模型關聯 上篇文章我們主要講了Eloquent Model關于基礎的CRUD方法的實現,Eloquent Model中除了基礎的CRUD外還有一個...
摘要:利用當前類沒有這個函數的時候執行這個函數名注冊的回調。使用有了這個那么我們添加到模型中,就可以使用宏能力為其動態添加函數了這樣,我們可以直接拿到用戶發布的所有問題了。 【摘要】簡單的說一下宏能力,這個類是 IlluminateSupportTraitsMacroable 其中利用重載實現了可以定義宏的功能,即通過 macro 靜態方法添加回調,并定義一個名字。利用 __call 當前類...
閱讀 1698·2021-10-28 09:32
閱讀 605·2021-09-24 09:47
閱讀 2920·2021-09-02 15:11
閱讀 2733·2021-08-09 13:46
閱讀 2884·2019-08-30 15:55
閱讀 1071·2019-08-30 15:54
閱讀 3300·2019-08-29 14:12
閱讀 805·2019-08-26 13:40