gpt4 book ai didi

php - Laravel Eloquent : How to get only certain columns from joined tables

转载 作者:IT老高 更新时间:2023-10-28 11:52:35 24 4
gpt4 key购买 nike

我在 Eloquent 中有 2 个连接表,即主题和用户。

主题模型:

public function user() {
return $this->belongs_to('User');
}

用户模型:

public function themes() {
return $this->has_many('Theme');
}

我的 Eloquent api 调用如下所示:

return Response::eloquent(Theme::with('user')->get());

返回主题的所有列(很好),以及用户的所有列(不好)。我只需要用户模型中的“用户名”列,我该如何限制查询?

最佳答案

更改模型以指定要选择的列:

public function user() {
return $this->belongs_to('User')->select(array('id', 'username'));
}

别忘了包括您要加入的列。

关于php - Laravel Eloquent : How to get only certain columns from joined tables,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14727038/

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