本文介绍了在 Symfony 2.0 中使用 optgroup 选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Symfony2中,select html 组件被渲染为一个ChoiceType 对象,它确实也用于checkboxescode> 和 radiobuttons.

In Symfony2, the select html component is rendered as a ChoiceType object, which is used indeed also for checkboxes and radiobuttons.

有人真的知道如何在 Symfony2 中使用 optgroup 选项呈现选择?

为了完整起见,我在这里报告了一个带有 optgroup 标记的 select 示例(示例来自 w3cschools):

For sake of completeness, here I report an example of a select with the optgroup tag (example from w3cschools):

<select>
  <optgroup label="Swedish Cars">
    <option value="volvo">Volvo</option>
    <option value="saab">Saab</option>
  </optgroup>
  <optgroup label="German Cars">
    <option value="mercedes">Mercedes</option>
    <option value="audi">Audi</option>
  </optgroup>
</select>

此外,请注意有一个类似的帖子 此处,但答案并不令人信服.

Moreover, notice that there is a similar post here, but the answers are not convincing.

推荐答案

这样做:

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

$form = $this->createFormBuilder()
        ->add('car', 'choice', array(
            'label' => 'Choose your car',
            'choices' => $car_choices,
            ))
        ->getForm();

适用于 Symfony 2.0.x

Works for Symfony 2.0.x

这篇关于在 Symfony 2.0 中使用 optgroup 选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-12 12:08