在选择列表Symfony表单中组合列

时间:2016-06-03 15:05:56

标签: drop-down-menu symfony choicefield

在我的Symfony表单中,我有一个choiceType字段列出类别。我的分类表如下所示:

id code categorie
1  100  First categorie
2  200  Second categorie
3  210  Second subcategorie

在我的表单中,我有一个selectfield和'choice_label',我可以决定使用哪个列,'code'或'categorie'用于选择列表。我想同时使用两者,因此用户有一个选择列表显示:

  • 100 First categorie
  • 200 Second categories
  • .. etc

是否可以加入choice_label的2列;连接字符串中的2列只是为了显示选择选项的目的? 我试图在这里和其他地方找到它。官方docs没有提到这个选项。

1 个答案:

答案 0 :(得分:6)

即使在ChoiceType for choice_label中,您也可以使用callable将其设置为link

'choice_label' => function($category, $key, $index) {
    /** @var Category $category */
    return $category->getId() . ' ' . $category->getName();
},

但是为什么你为你的类别使用ChoiceType,你如何设置选择?为什么不使用EntityType?

->add('category', EntityType::class, array(
    'choice_label' => function ($category) {
        return $category->getId() . ' ' . $category->getName();
    }
    'class' => 'AppBundle:Category',
    'query_builder' => function (EntityRepository $er) {
        return $er->createQueryBuilder('c')
            ->orderBy('c.id', 'ASC');
    },
))