如何在Eloquent Model中动态设置表名

时间:2017-12-27 05:08:51

标签: php laravel laravel-5

我是Laravel的新手。我正在尝试使用Eloquent Model来访问DB中的数据。

我有表格,例如表名。

所以我想使用一个模型来访问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);

1 个答案:

答案 0 :(得分:7)

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

Sub TestDatabase()
    Dim connStr = "Server=(localdb)\mssqllocaldb;" +
                "Database=StackOverflow;" +
                "Trusted_Connection=Yes"
    Using conn = New SqlConnection(connStr)
        conn.Open()
        Dim sql = "SELECT * FROM dbo.TimeTable WHERE @ATime BETWEEN starttime AND endtime;"
        Using comm = New SqlCommand(sql, conn)
            Dim t = TimeSpan.Parse("1:30")
            comm.Parameters.AddWithValue("@ATime", t)
            Using reader = comm.ExecuteReader()
                While reader.Read()
                    Console.WriteLine(reader("room"))
                End While
            End Using
        End Using
    End Using
End Sub

以下是如何使用它:

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;
}