這篇文章主要給大家介紹了關於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 Circle())->setTable("t_group_" . hashID($userid, 20)) ->newQuery() ->where('group_id', $request->group_id) ->update($attributes);
程式碼如下:
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中文網其他相關文章!