Laravel eloquent - prevent overriding values when joining tables(Laravel eloquent - 在加入表时防止覆盖值)
问题描述
class Account extends Eloquent
{
protected $table = 'account';
/* [...] */
public function group() {
return $this->belongsTo('Group');
}
}
和
class Role extends Eloquent {
protected $table = 'role';
public function accounts() {
return $this->hasMany('Account');
}
}
和数据库表:account
和 role
account
-------
id
name
role_id (nullable)
role
----
id
name
现在的事情是:
我需要按 role.name
列对 accounts
进行排序.但是在 join(或 leftJoin)值被第二个表中的值覆盖后.这是一些代码:
And now the thing is:
I need to order accounts
by role.name
column. But after join (or leftJoin) values are overriden by those from second table. Here's some code:
$response = Account::with('role')->leftJoin('group', 'group.id', '=', 'account.group_id')->get();
之后 id
和 name
的值在 eloquent 集合中不正确.
After that values for id
and name
are incorrect in eloquent collections.
此外,我需要返回的是 eloquent 类型模型,因为我以 JSON 返回响应,重要的是稍后在 JS 中(解析 JSON 后)我可以只做 account.role.name
.
Also, i need the return to be eloquent type models as i'm returning back the response in JSON, where it is important that later in JS (after parsing JSON) i can do just account.role.name
.
更改表中字段的名称(例如:id -> account_id 和:id -> role_id)将是一种解决方法,但这不是我的情况 - 需要将主键命名为 id
每张桌子.
Changing names of fields in tables (like: id -> account_id, and: id -> role_id) would be an workaround, but that's not my case - need to have primary key named id
for every table.
是的,所以问题很简单:如何解决这个问题?
[edit] Yep, so the question is simply: how to solve that problem?
推荐答案
您可以像在普通 SQL 查询中一样使用选择":
You can use 'select' like you would in a normal SQL query:
$response = Account::with('role')
->select('account.*')
->leftJoin('group', 'group.id', '=', 'account.group_id')
->get();
http://laravel.com/docs/queries#selects
这篇关于Laravel eloquent - 在加入表时防止覆盖值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel eloquent - 在加入表时防止覆盖值
基础教程推荐
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01