Laravel Eager Loading - 仅加载特定列

Laravel Eager Loading - Load only specific columns(Laravel Eager Loading - 仅加载特定列)
本文介绍了Laravel Eager Loading - 仅加载特定列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 laravel 中急切加载模型,但只返回某些列.我不希望呈现整个急切加载的表格.

I am trying to eager load a model in laravel but only return certain columns. I do not want the whole eager loaded table being presented.

public function car()
{
    return $this->hasOne('Car', 'id')->get(['emailid','name']);
}

我收到以下错误:

log.ERROR: 异常 'SymfonyComponentDebugExceptionFatalErrorException' 带有消息 'Call to undefined method IlluminateDatabaseEloquentCollection::getAndResetWheres()'

log.ERROR: exception 'SymfonyComponentDebugExceptionFatalErrorException' with message 'Call to undefined method IlluminateDatabaseEloquentCollection::getAndResetWheres()'

推荐答案

利用select()方法:

public function car() {
    return $this->hasOne('Car', 'id')->select(['owner_id', 'emailid', 'name']);
}

注意:记得添加分配给匹配两个表的外键的列.例如,在我的示例中,我假设 Owner 有一个 Car,这意味着分配给外键的列类似于 owners.id = cars.owner_id,所以我必须将 owner_id 添加到所选列的列表中;

Note: Remember to add the columns assigned to the foreign key matching both tables. For instance, in my example, I assumed a Owner has a Car, meaning that the columns assigned to the foreign key would be something like owners.id = cars.owner_id, so I had to add owner_id to the list of selected columns;

这篇关于Laravel Eager Loading - 仅加载特定列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)