如何在symfony2中使用FileType输入处理编辑表单 [英] howto handle edit forms with FileType inputs in symfony2

查看:64
本文介绍了如何在symfony2中使用FileType输入处理编辑表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

实体Message与文档具有一对多关系.文件代表使用者上载.我创建了一个表格.我实现了两种形式:MessageForm和DocumentForm. DocumentForm位于MessageForm的集合FormField中.上传和处理文件确实有效.

in a symfony2 application a entity Message has a one-to-many relation to documents. Documents represents user uploads. i created a form. I realized two Forms: MessageForm and DocumentForm. DocumentForm lives inside a collection FormField in MessageForm. Uploading and processing files does work.

但是,如果我要编辑实体消息,则表单包含的空FileInputs数量与现有Documents一样多.期望的行为是:

But if i want to edit the entity Message the Form contains as many empty FileInputs as there are Documents existing. desired behaviour would be:

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

这应该在表单内部处理.提交表单后应进行更改.

This should be handled inside the form. Changes should be done when the form is submitted.

这怎么实现?

推荐答案

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

Solution is to write a custom form type extension. as described on 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 }

在表单类型内

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

就这样;)

这篇关于如何在symfony2中使用FileType输入处理编辑表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆