Laravel Eager Loading Polymorphic Relationships(Laravel 渴望加载多态关系)
问题描述
尝试预先加载模型及其相关模型,但相关模型返回 null,即使它具有相关数据.
Trying to eager load a model and it's related model but the related model returns null even though it has related data.
组模型对 Game 或 Gamer 具有 1:1 的多态性.
组模型关系:
public function groupable()
{
return $this->morphTo();
}
游戏模型关系:
public function group()
{
return $this->morphOne('Group', 'groupable');
}
玩家模型关系:
public function group()
{
return $this->morphOne('Group', 'groupable');
}
查询加载组然后游戏:
$group = Group::whereSubdomain($id)->first();
$game = $group->game;
组返回组,但游戏返回 null.
这是 Groups 表的示例数据库条目:
id subdomain groupable_id groupable_type
5 Starmade 10 Game
这是 Games 表的示例数据库条目:
id genre rating
10 7 4.5
不知道我哪里错了没有游戏返回.
Not sure where I am going wrong to have no game returned.
推荐答案
试试这个.这可能会有所帮助.
Try this. It might help.
public function groupable()
{
return $this->morphTo('groupable');
}
我之前也遇到过这个问题,也许你和我有同样的问题.基本上我所做的是帮助 Laravel 找到它需要查找的列.
I had that problem too earlier, maybe you have the same prob like me. Essentially what I did was to help Laravel finds what columns it needs to look up for.
这篇关于Laravel 渴望加载多态关系的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 渴望加载多态关系
基础教程推荐
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01