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 加载关系
基础教程推荐
- 在PHP中根据W3C规范Unicode 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 如何替换eregi() 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
