gpt4 book ai didi

php - 如何在 Eloquent 模型中动态设置表名

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:07:32 25 4
gpt4 key购买 nike

我是 Laravel 的新手。我正在尝试使用 Eloquent 模型访问数据库中的数据。

我有一些表具有相似之处,例如表名。

所以我想使用一个模型访问数据库中的多个表,如下所示,但没有成功。

有没有办法动态设置表名?

如有任何建议或建议,我们将不胜感激。提前谢谢你。

型号:

class ProductLog extends Model
{

public $timestamps = false;

public function __construct($type = null) {

parent::__construct();

$this->setTable($type);
}
}

Controller :

public function index($type, $id) {

$productLog = new ProductLog($type);

$contents = $productLog::all();

return response($contents, 200);
}

遇到同样问题的解决方法:

我能够按照@Mahdi Younesi 建议的方式更改表名。

我可以像下面这样添加 where 条件

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

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

最佳答案

以下特征允许在水合作用期间传递表名。

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
}

关于php - 如何在 Eloquent 模型中动态设置表名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47986628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com