symfony2在表单中断言文件类型会抛出unexpectedTypeException

时间:2015-02-04 19:35:02

标签: php symfony doctrine-orm constraints assert

使用symfony2 / doctrine 2,我想使用验证约束来对我的应用程序中的上传文件执行检查。

由于基础实体是一般媒体实体,可用于整个网站的不同类型的媒体,我想将这些验证限制放在相关的表格类型中。

当我没有提出任何断言时,上传工作正确完成。 这样做时,我收到以下错误:

Expected argument of type "string", "Doctrine\ORM\PersistentCollection" given
Stack Trace
in vendor/symfony/symfony/src/Symfony/Component/Validator/Constraints/FileValidator.php at line 119   -
        }
        if (!is_scalar($value) && !$value instanceof FileObject && !(is_object($value) && method_exists($value, '__toString'))) {
            throw new UnexpectedTypeException($value, 'string');
        }
        $path = $value instanceof FileObject ? $value->getPathname() : (string) $value;

我的表单类型:

    ->add('medias', 'collection', array(
            'type' => new MediaType(),
            'by_reference' => false,
            'label'=>'Images et vidéos',
            'allow_add' => true,
            'allow_delete' => true,
            'required' => false,
            'cascade_validation' => true,
            'constraints' => array(
                new Assert\File(array('mimeTypes' => array("video/mpeg"), 'mimeTypesMessage' => "The file is not a video"))
            ),
            'attr'=>array(
                'data-toggle'=>"tooltip",
                'data-placement'=>"top",
                'title'=>"Ajoutez des images ou vidéos pour décrire la recette",
            )))

我做错了什么?

1 个答案:

答案 0 :(得分:0)

Arf,我累了,我应该把这个断言放到另一个Assert \ All中。我收到错误,因为它是一个集合。