Eloquent - Eager Loading Relationship(Eloquent - Eager 加载关系)
问题描述
我想弄清楚如何从相关表中预先加载数据.我有 2 个模型 Group
和 GroupTextPost
.
I'm trying to figure out how to eager load data from a related table. I have 2 models Group
and GroupTextPost
.
Group.php
<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;
class Group extends Model
{
protected $table = 'group';
public function type()
{
return $this->hasOne('AppModelsGroupType');
}
public function user()
{
return $this->belongsTo('AppModelsUser');
}
public function messages()
{
return $this->hasMany('AppModelsGroupTextPost');
}
}
GroupTextPost.php
<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;
class GroupTextPost extends Model
{
protected $table = 'group_text_post';
public function user()
{
return $this->belongsTo('AppModelsUser');
}
public function group()
{
return $this->belongsTo('AppModelsGroup');
}
}
我想要做的是在获取群组文本帖子时预先加载 user
,以便在我提取消息时包含用户名.
What I'm trying to do is eager load the user
when fetching group text posts so that when I pull the messages the user's name is included.
我试过这样做:
public function messages()
{
return $this->hasMany('AppModelsGroupTextPost')->with('user');
}
...并像这样调用:
$group = Group::find($groupID);
$group->messages[0]->firstname
但我收到一个错误:
Unhandled Exception: Call to undefined method IlluminateDatabaseQueryBuilder::firstname()
这可能与 Eloquent 相关吗?
Is this possible to do with Eloquent?
推荐答案
你不应该直接在关系上预先加载.您可以始终在 GroupTextPost 模型上预先加载用户.
You should not eager load directly on the relationship. You could eager load the user always on the GroupTextPost model.
GroupTextPost.php
GroupTextPost.php
<?php
namespace AppModels;
use IlluminateDatabaseEloquentModel;
class GroupTextPost extends Model
{
protected $table = 'group_text_post';
/**
* The relations to eager load on every query.
*
* @var array
*/
protected $with = ['user'];
public function user()
{
return $this->belongsTo('AppModelsUser');
}
public function group()
{
return $this->belongsTo('AppModelsGroup');
}
}
或者你可以使用嵌套急切加载
$group = Group::with(['messages.user'])->find($groupID);
$group->messages[0]->user->firstname
这篇关于Eloquent - Eager 加载关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eloquent - Eager 加载关系


- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP - if 语句中的倒序 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01