本文介绍了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 加载关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End



大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)