在實際開發中經常用到分庫分表,比如使用者表分成 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 方法,改成 myHasOne,並傳入表名,並且在函式里物件例項化後呼叫 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);
}
不知道大家有沒有更優雅的方式。
(原文地址:https://blog.tanteng.me/2018/04/laravel-re...)
本作品採用《CC 協議》,轉載必須註明作者和本文連結