0

我有一个choice表单字段,其中包含很多选项,我需要以某种方式对其进行分组,以便将它们分成组进行渲染,可能放置在不同的 div 中。

我目前正在尝试实施ChoiceListInterface以实现这一目标,但我不知道如何实施这些方法,因此我可以按组呈现选择,但文档没有说明如何做到这一点。

选择总是一起呈现。

4

1 回答 1

2

你有这个数组

$grouped_choices = array(
    'Swedish Cars' => array(
        'volvo' => 'Volvo',
        'saab' => 'Saab',
    ),
    'German Cars' => array(
        'mercedes' => 'Mercedes',
        'audi' => 'Audi'
    )
);

第一种方式:快速简单

$builder->add($name, 'choice', array(
            'choices'   => $grouped_choices),
)

但我不认为它适用于'expanded' => true

所以还有另一种方式,更可定制(也许更脏)在你的FormType

foreach($grouped_choices as $name => $choices) {
  $builder->add($name, 'choice', array(
    'choices'   => $choices),
    'expanded'  => true, //custom the widgets like you wants
);

}

让控制器将数组发送到视图,然后在视图中

{% for name, choices in grouped_choices %}
  <div class="whatever">
   {{ form_row(name) }}
  </div>
{% endfor %}
于 2013-10-24T13:27:29.603 回答