這篇文章主要給大家介紹了關於Laravel模型間關係設定分錶的相關資料,文中透過範例程式碼介紹的非常詳細,對大家的學習或工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧。
Eloquent是什麼
Eloquent 是一個ORM,全稱為Object Relational Mapping,翻譯為「物件關係映射」(如果只把它當成Database Abstraction Layer 陣列庫抽象層那就太小看它了)。所謂 “物件”,就是本文所說的 “模型(Model)”;物件關係映射,即為模型間關係。中文文件:http://laravel-china.org/docs/eloquent#relationships
#引用
在實際開發中常用到分庫分錶,例如使用者表分成100 張,那麼這個時候查詢資料需要設定分錶,例如Laravel 的Model 類別中提供了setTable 方法:
##
/** * Set the table associated with the model. * * @param string $table * @return $this */ public function setTable($table) { $this->table = $table; return $this; }那麼資料表的增刪改查就需要先new 一個模型實例,再設定表名。如:
(new Circle())->setTable("t_group_" . hashID($userid, 20)) ->newQuery() ->where('group_id', $request->group_id) ->update($attributes);這個很簡單,那麼在模型間關係例如 HasOne,HasMany 等使用這種方式的情況下,如何設定分錶呢? 找了半天沒找到好的方法,以 HasOne 為例,看了 Model 類別 HasOne 函數的實作方法,沒有地方可以設定表名,只好複製一份 HasOne 方法來修改。例如改成 myHasOne,加上 $table 參數可以設定表名,而且在物件實例化後呼叫 setTable,果然就可以了。
程式碼如下:
public function detail() { return $this->myHasOne(Circle::class, 'group_id', 'group_id', 't_group_' . hashID($this->userid, 20)); } public function myHasOne($related, $foreignKey = null, $localKey = null, $table) { $foreignKey = $foreignKey ?: $this->getForeignKey(); $instance = (new $related)->setTable($table); $localKey = $localKey ?: $this->getKeyName(); return new HasOne($instance->newQuery(), $this, $instance->getTable() . '.' . $foreignKey, $localKey); }#不知道大家有沒有更優雅的方式。 相關推薦:
以上是Laravel模型間關係設定分錶的詳細內容。更多資訊請關注PHP中文網其他相關文章!