我有一个类文章,其中包含一系列步骤类,步骤包含多个媒体类。
想法是一篇文章可以包含几个步骤,每个步骤可以包含几个图像。
我需要实现一个表单,以便使用 Doctrine 轻松上传和持久化。
我需要一些关于如何使用 jQuery 上传多个图像的建议,这些图像出现在一篇文章中并与 Doctrine 保持一致。
当我尝试添加到表单时:
->add('files','file',
array(
"label" => "Files",
"required" => FALSE,
"attr" => array(
"accept" => "image/*",
"multiple" => "multiple",
)
我收到一个错误:
Neither property "files" nor method "getFiles()" nor method "isFiles()" exists in class "Ift\DesignBundle\Entity\Article"
在实体文章中我有
protected $steps;
这与类步骤(OneToMany)有关。在 Steps 中是一个属性:
protected $media;
代表图像并且与 Steps OneToMany 相关。