在configureFormFields中的sonata媒体包中预览图像

时间:2017-09-03 10:34:46

标签: php symfony sonata-admin sonata

如何在奏鸣曲管理包中的媒体字段中制作预览图像?

这 - > https://symfony.com/doc/master/bundles/SonataAdminBundle/cookbook/recipe_image_previews.html没有工作 返回

  

尝试调用名为" getWebPath"的未定义方法。班级......

1 个答案:

答案 0 :(得分:0)

您必须在实体Image类中实现getWebPath方法(查看pre-requisites),如:

protected function getUploadDir()
{
    return '/uploads';
}

public function getWebPath()
{
    return null === $this->path
        ? 'null'
        : $this->getUploadDir().'/'.$this->path;
}