0

我有两个实体之间的多对多关系。

然后我显示一个将 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>

不再提交表格。有什么想法吗?

这是我的整个树枝视图

  <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>
4

1 回答 1

2

在您的表单构建器中,您可以添加一些选项,例如我的示例:

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

在您的表单类型中

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';
                }
            )
        );
    }

在您的表单控制器中

$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>

呈现的字段类型将取决于 multiple 和 expend 的设置

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>
于 2013-05-15T08:19:18.853 回答