Symfony2更新表单集合中的特定字段

时间:2013-04-23 05:30:25

标签: forms symfony collections

我有一个有趣的问题。我无法在stackoverflow和谷歌中找到任何解决方案。我有一个实体UserUser有一些元模型。所以我创建了一个UserMeta实体,还有UserMetaValue。在用户表单中有很多选项卡。我在选项卡中使用了这些元数据。其中一些在第一个选项卡中,其中一些在其他选项卡中。所有标签都有自己的形式。当我在活动选项卡上绑定表单时,活动选项卡metas更新,其他更改为NULL。

StudentPersonalType.php

namespace ATL\UserBundle\Form\Type;

use ATL\CommonBundle\Utils\Shortcut;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Form\FormBuilderInterface;

class StudentPersonalType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options){
        $builder->add("first_name", null, array(
                "label" => "İsim",
                "required" => true,
                "attr" => array(
                    "class" => "span10"
                )
            ))->add("last_name", null, array(
                "label" => "Soyisim",
                "required" => true,
                "attr" => array(
                    "class" => "span10"
                )
            ))->add("username", null, array(
                "label" => "Öğrenci Numarası",
                "required" => true,
                "attr" => array(
                    "class" => "span10"
                )
            ))->add("email", null, array(
                "label" => "Email",
                "required" => true,
                "attr" => array(
                    "class" => "span10"
                )
            ))->add('metas', 'collection', array(
                'label' => "Metas",
                'type' => new UserMetaType()
            ));
    }

    public function getName(){
        return "personal";
    }

    public function setDefaultOptions(OptionsResolverInterface $resolver){
        $resolver->setDefaults(array(
            "data_class" => "ATL\UserBundle\Entity\User"
        ));
    }
}

StudentEducationType.php

namespace ATL\UserBundle\Form\Type;

use ATL\CommonBundle\Utils\Shortcut;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormEvents;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Form\FormBuilderInterface;

class StudentEducationType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options){
        $builder->add('metas', 'collection', array(
                'label' => "Metas",
                'type' => new UserMetaType(),
                'by_reference' => false
            ));
    }

    public function getName(){
        return "education";
    }

    public function setDefaultOptions(OptionsResolverInterface $resolver){
        $resolver->setDefaults(array(
            "data_class" => "ATL\UserBundle\Entity\User"
        ));
    }
}

和树枝

    <div id="personal-info" class="tab-pane row-fluid active">
       <form style="margin:20px 0 0 0;" class="ajaxForm form-horizontal form-row-seperated" action="{{ formAction }}">
            {{ form_row(form.first_name) }}
            {{ form_row(form.last_name) }}
            {{ form_row(form.email) }}
            {{ form_row(form.username) }}
            {% for meta in form.metas %}
                {% if meta.value.vars.label in formValues.personal %}
                    {{ form_widget(meta) }}
                {% endif %}
            {% endfor %}
            {{ form_row(form._token) }}
            <div class="form-actions" style="margin-bottom:0;">
                <button class="btn blue" type="submit"><i class="icon-ok"></i> Kaydet</button>
            </div>
        </form>
    </div>
    <div id="education-info" class="tab-pane row-fluid">
        <form style="margin:20px 0 0 0;" class="ajaxForm form-horizontal form-row-seperated" action="{{ formAction }}">
            {% for meta in educationForm.metas %}
                {% if meta.value.vars.label in formValues.education %}
                    {{ form_widget(meta) }}
                {% endif %}
            {% endfor %}
            {{ form_row(educationForm._token) }}
            <div class="form-actions" style="margin-bottom:0;">
                <button class="btn blue" type="submit"><i class="icon-ok"></i> Kaydet</button>
            </div>
        </form>
    </div>

我通过IF语句在twig文件中检查它来过滤集合字段。

我再次问我的问题,我如何在不影响其他页面的情况下以不同的形式使用metas?

1 个答案:

答案 0 :(得分:1)

您已经完成了过滤掉不相关的渲染字段的一半工作。但是您还需要过滤掉表单绑定的不相关字段。

当您将请求绑定到表单时,它会期望每个 UserMeta实体的值,因为UserMetaType集合中的所有实体都有一个字段。您需要删除与您提交的某个值不对应的所有UserMetaType表单。对FormEvents::PRE_BIND听众来说,这可能是最好的。

您可以在Form: Avoid setting null to non submitted field查看更简单的示例。这对你来说会稍微复杂一点,因为你必须遍历UserMetaType表格的集合并删除那些你不想要绑定的表格。