表单视图中的多对多关系symfony 2

时间:2013-05-15 08:12:19

标签: php symfony

我在两个实体之间有很多关系。

然后我显示一个表单,将entityA添加到entityB。 是不是可以添加自定义表单(我的意思是在树枝视图中),以便用户有时可以选择一个值,有时候选择多个值?

当我希望用户选择多个值时,我使用此

<select multiple>
{% for entity in entitys %}
<option> 
{{entity.id}}

 </option>
{%endfor%}
</select>

否则这个

 <select >
    {% for entity in entitys %}
    <option> 
    {{entity.id}}

     </option>
    {%endfor%}
    </select>

但现在的问题是如何提交表单。

<button  type="submit"  class="btn btn-info"    value="NEXT STEP " /> 

这是整个表格

<form method="post">
  <select >
    {% for entity in entitys %}
    <option> 
    {{entity.id}}

     </option>
    {%endfor%}
    </select>

<input  type="submit"     /> 

</form>

不再提交表单。任何想法plz ??

这是我的整个树枝视图

  <h2> STEP {{step}} </h2>
  <form method="post">
<select >
{% for entity in entitys %}
<option value="{{entity.id}}"> 
{{entity.id}}

 </option>
{%endfor%}
</select>

<input  type="submit"  class="btn btn-info"     /> 

</form>
  <br>
  <br>

1 个答案:

答案 0 :(得分:2)

在你的formbuilder中你可以添加一些选项,例如我的例子:

目的是将您的字段映射到实体(以设置列表)。不要忘记向映射的实体添加方法_tostring,以使symfony能够将您的实体表示为您的选择中的文本。

在您的formType

public function buildForm(FormBuilder $builder, array $options) {
        $id = $this->id;

        $builder->add(
            'addressees',
            'entity',
            array(
                        'class' => 'Pref27\MailBundle\Entity\Addressee',
                        'property' => 'name',
                        'multiple' => true,
                    'expanded' => false,
                        'required' => true,
                        'label' => 'mail.add.theme';
                }
            )
        );
    }

在您的formControler

$editForm = $this->createForm(new FormType(), $entity);
return array(
            'form'   => $editForm->createView()
        );

在您的视图中

<form action="{{ path('theControllerActionWitchIsResponsibeOfRecordingIntoDatabase' }}" method="post" {{ form_enctype(edit_form) }}>
        {{ form_widget(edit_form) }}
        <p>
            <button type="submit">Next step</button>
        </p>
</form>

呈现的字段类型取决于多个和已消耗的

的设置
select tag                                  expanded=false  multiple=false
select tag (with multiple attribute)        expanded=false  multiple=true
radio buttons                               expanded=true   multiple=false
checkboxes                                  expanded=true   multiple=true

您可以在此处找到有关实体类型的更多信息:http://symfony.com/doc/2.0/reference/forms/types/entity.html

编辑:

从您的树枝视图表单中删除了操作 尝试添加

<form method="post" action="{{ path("theRouteOfYourControllerWitchRecordTheData")}}">

请勿忘记添加{{form_rest(form) }}告诉twig添加CSRF令牌

并且不要忘记在您选择的选项中添加价值

<select multiple>
  {% for entity in entitys %}
       <option value="{{entity.id}}">{{entity.name}}</option>
  {%endfor%}
</select>