gpt4 book ai didi

php - 如何将 Eloquent 中的连接设置为每个查询的默认值?

转载 作者:行者123 更新时间:2023-11-29 06:32:19 25 4
gpt4 key购买 nike

我有一个现有的数据库,其架构相当糟糕,我无法更改。我想通过 Eloquent 使用它。在使用此数据库时,我需要向所有查询添加几个关节,如下所示:

<?php
class SomeModel extends Eloquent {

protected $table = 'users';
protected $primaryKey = 'index';
public $timestamps = FALSE;

function __construct($attributes = array())
{
parent::__construct($attributes);

$this->leftJoin('sites', 'sites.Siteindex', '=', 'users.index');

$this->leftJoin(DB::raw('(`lookups` `l`)'), function($join){
$join->on('l.value', '=', 'users.type')->where('l.fieldname', '=', 'user_type');
});
}
}

这可能吗?

最佳答案

不要在用户模型中使用 __construct 函数,而是创建一个作用域。

public function scopeGetSiteIndex($query) {
return $query->leftJoin('sites', 'sites.Siteindex', '=', 'users.index');
}

然后你可以从 Controller 调用它

$siteIndex = User::getSiteIndex()->get();

关于php - 如何将 Eloquent 中的连接设置为每个查询的默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27126561/

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