laravel 如何在口才模型中动态设置表名

hgb9j2n6  于 2022-12-24  发布在  其他
关注(0)|答案(2)|浏览(229)

我是laravel的新手,我正在尝试使用eloquent模型访问DB中的数据。
我有一些表具有相似性,例如表名。
所以我想使用一个模型来访问数据库中的几个表,如下所示,但运气不好。
有没有办法动态设置表名?
如有任何建议或意见,我们将不胜感激。先谢了。

    • 型号:**
class ProductLog extends Model
{

    public $timestamps = false;

    public function __construct($type = null) {

        parent::__construct();

        $this->setTable($type);
    }
}
    • 控制器:**
public function index($type, $id) {

    $productLog = new ProductLog($type);

    $contents = $productLog::all();

    return response($contents, 200);
}
    • 解决方案对于那些谁遭受同样的问题:**

我能够按照@Mahdi Younesi的建议更改表名。
我可以通过如下方式添加条件

$productLog = new ProductLog;
$productLog->setTable('LogEmail');

$logInstance = $productLog->where('origin_id', $carrier_id)
                          ->where('origin_type', 2);
kb5ga3dv

kb5ga3dv1#

以下特性允许在水合期间传递表名。

trait BindsDynamically
{
    protected $connection = null;
    protected $table = null;

    public function bind(string $connection, string $table)
    {
       $this->setConnection($connection);
       $this->setTable($table);
    }

    public function newInstance($attributes = [], $exists = false)
    {
       // Overridden in order to allow for late table binding.

       $model = parent::newInstance($attributes, $exists);
       $model->setTable($this->table);

       return $model;
    }

}

下面是如何使用它:

class ProductLog extends Model
{
   use BindsDynamically;
}

在示例上调用方法,如下所示:

public function index() 
{
   $productLog = new ProductLog;

   $productLog->setTable('anotherTableName');

   $productLog->get(); // select * from anotherTableName

   $productLog->myTestProp = 'test';
   $productLog->save(); // now saves into anotherTableName
}
sz81bmfz

sz81bmfz2#

我为此创建了一个包:第一个月
请随意使用它:https://github.com/laracraft-tech/laravel-dynamic-model
这基本上允许您执行以下操作:

$foo = App::make(DynamicModel::class, ['table_name' => 'foo']);

$foo->create([
    'col1' => 'asdf',
    'col2' => 123
]);

$faz = App::make(DynamicModel::class, ['table_name' => 'faz']);
$faz->create([...]);

相关问题