如何在symfony2中处理带有FileType输入的编辑表单

时间:2013-03-21 16:31:41

标签: php forms symfony

在symfony2应用程序中,实体Message与文档具有一对多的关系。文档表示用户上传。我创建了一个表单。我意识到两种形式:MessageForm和DocumentForm。 DocumentForm位于MessageForm中的集合FormField中。上传和处理文件确实有效。

但是,如果我想编辑实体消息,则表单包含与存在的文档一样多的空FileInput。期望的行为是:

  • FileInputs上传新文件
  • 现有文件的文件名(链接)
  • 删除现有文件的可能性

这应该在表单内处理。提交表单时应进行更改。

如何实现?

2 个答案:

答案 0 :(得分:9)

解决方案是编写自定义表单类型扩展名。如http://symfony.com/doc/2.1/cookbook/form/create_form_type_extension.html所述。

文件类型扩展名

    <?php

    use Symfony\Component\Form\AbstractTypeExtension;
    use Symfony\Component\Form\FormView;
    use Symfony\Component\Form\FormInterface;
    use Symfony\Component\Form\Util\PropertyPath;
    use Symfony\Component\OptionsResolver\OptionsResolverInterface;

    /**
     * Class FileTypeExtension
     *
     * @see http://symfony.com/doc/2.1/cookbook/form/create_form_type_extension.html
     */
    class FileTypeExtension extends AbstractTypeExtension
    {
        /**
        * Returns the name of the type being extended.
        *
        * @return string The name of the type being extended
        */
        public function getExtendedType()
        {
            return 'file';
        }

        /**
         * Add the image_path option
         *
         * @param OptionsResolverInterface $resolver
         */
        public function setDefaultOptions(OptionsResolverInterface $resolver)
        {
            $resolver->setOptional(array('file_path', 'file_name'));
        }

        /**
         * Pass the image url to the view
         *
         * @param FormView $view
         * @param FormInterface $form
         * @param array $options
         */
        public function buildView(FormView $view, FormInterface $form, array $options)
        {
            if (array_key_exists('file_path', $options)) {
                $parentData = $form->getParent()->getData();

                if (null !== $parentData) {
                    $propertyPath = new PropertyPath($options['file_path']);
                    $fileUrl = $propertyPath->getValue($parentData);
                } else {
                    $fileUrl = null;
                }

                $view->set('file_url', $fileUrl);
            }

            if (array_key_exists('file_name', $options)) {
                $parentData = $form->getParent()->getData();

                if (null !== $parentData) {
                    $propertyPath = new PropertyPath($options['file_name']);
                    $fileName = $propertyPath->getValue($parentData);
                } else {
                    $fileName = null;
                }

                $view->set('file_name', $fileName);
            }
        }
    }

自定义file_widget

    {% block file_widget %}
        {% spaceless %}

            {% if file_url is not null %}
                <div><a href="{{ file_url }}">{{ file_name }}</a></div>
                <div style="display:none">{{ block('form_widget') }}</div>
            {% else %}
                {{ block('form_widget') }}
            {% endif %}

        {% endspaceless %}
    {% endblock %}

services.yml

    parameters:
        foobar.file_type_extension.class: Foobar\Form\Extension\FileTypeExtension

    services:
        foobar.file_type_extension:
            class: %replacethis.file_type_extension.class%
            tags:
              - { name: form.type_extension, alias: file }

在formtype

    $builder->add('file','file', array(
                "label" => "Datei",
                "required" => true,
                "attr" => array(),
                "file_path" => "webPath",
                "file_name" => "name"
            ));

就是这样;)

答案 1 :(得分:0)

除了上面的回答之外 - 你可以让你构建一个文件输入,它可以呈现为一个链接(如果它有一个url)或一个字段(如果它没有) - 你可以看一下< / p>

http://symfony.com/doc/2.0/cookbook/form/form_collections.html

结合一些jQuery,你可以在UI中添加字段。