我有一个使用多态关系的Gallery
表,因此我可以将Images
和Videos
添加到我的图库列表中。
在Gallery
表格中,我有galleryable_type
列,其中填充了App\Video
或App\Image
。
我是否有办法使用访问者(文档here)将galleryable_type
的值更改为video
或image
,以便我可以使用该列在JS中决定我处理的库项目类型是什么?
我尝试了以下内容:
/**
* Get and convert the makeable type.
*
* @param string $value
* @return string
*/
public function getMakeableTypeAttribute($value)
{
return str_replace('app\\', '', strtolower($value));
}
但我最终得到以下错误:
FatalErrorException in Model.php line 838:
Class '' not found
我假设在多态关系之前正在处理访问者,但我不确定。
我可以在我的控制器中使用以下内容:
foreach (Gallery::with('galleryable')->get() as &$gallery) {
$gallery->galleryable_type = str_replace('app\\', '', strtolower($gallery->galleryable_type ));
}
但这似乎是一种狡猾的做事方式。 Laravel大师可以解决解决这个问题的最佳方法吗?
谢谢!
答案 0 :(得分:0)
我找到了解决这个问题的有趣方法。
在您的模型(App\Video
和App\Image
)中,您必须添加:
protected $morphClass = 'video'; // 'image' for image class
然后在服务提供者类的register
方法中添加:
$aliasLoader = \Illuminate\Foundation\AliasLoader::getInstance();
$aliasLoader->alias('video', \App\Video::class);
$aliasLoader->alias('image', \App\Image::class);
这将导致您在image
中将video
和galleryable_type
写入数据库而不是类名。
现在您可以通过以下方式轻松获得此值:
echo $model->galleryable_type;