如何在奏鸣曲管理包中的媒体字段中制作预览图像?
这 - > https://symfony.com/doc/master/bundles/SonataAdminBundle/cookbook/recipe_image_previews.html没有工作 返回
尝试调用名为" getWebPath"的未定义方法。班级......
答案 0 :(得分:0)
您必须在实体Image类中实现getWebPath方法(查看pre-requisites),如:
protected function getUploadDir()
{
return '/uploads';
}
public function getWebPath()
{
return null === $this->path
? 'null'
: $this->getUploadDir().'/'.$this->path;
}