我有一个评论表,其中包含文章,食谱和产品的评论。所以它是一个polymorphic
关系。我的评论表中有两列rel_id and rel_type
用于此关系。
现在我的Comment.php
我有以下关系
public function rel()
{
$this->morphTo();
}
在我的其他课程中,我有以下
public function comments()
{
return $this->morphMany('App\Models\Comment', 'rel');
}
当我试图获得评论的所有者及其所有相关数据时,我发现找不到类错误。例如
$comments = Comment::find(1);
echo $comments->rel_type //article
现在,如果我想获取文章的数据以及何时尝试
$comments->rel
我找到了article class not found
。我正在使用名称空间App\Models\Article
我搜索过它我找到了给出here的答案。当我尝试接受答案时,没有任何反应,错误保持不变。当我尝试同样问题的第二个答案时,我找到了
Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation
我的最终目标是获取评论所有者数据,例如$ comments-> articles-> id等。请指导我该怎么做?
答案 0 :(得分:1)
我有一篇关于此的博文:
http://andrew.cool/blog/61/Morph-relationships-with-namespaces
您需要做几件事。首先,对于所有有评论的模型,将$morphClass
变量添加到类中,例如:
class Photo {
protected $morphClass = 'photo';
}
class Album {
protected $morphClass = 'album';
}
其次,在Comment类上,在Comment类中定义一个名为$rel_types
的数组。这基本上与你刚刚做的相反,它是从短名到全名的映射。
class Comment {
protected $rel_types = [
'album' => \App\Album::class,
'photo' => \App\Photo::class,
];
}
最后,为rel_type
列定义一个访问者。此访问者将首先从数据库中检索列(“专辑”,“照片”等),然后将其转换为完整的类名(“\ App \ Album”,“\ App \ Photo”等)< / p>
/**
* @param string $type short name
* @return string full class name
*/
public function getRelTypeAttribute($type)
{
if ($type === null) {
return null;
}
$type = strtolower($type);
return array_get($this->rel_types, $type, $type);
}
注意:$morphClass
是Laravel实际定义的内容,因此必须将其命名为。{1}}。 $rel_types
可以按照您想要的名称命名,我只是根据您拥有的rel_type
列。
为了使这更好,请将getRelTypeAttribute
方法添加到特征中,以便任何变形的模型都可以重用该特征和方法。