gpt4 book ai didi

forms - Symfony 2 : Get available choices of a choice Field Type

转载 作者:行者123 更新时间:2023-12-03 15:32:24 26 4
gpt4 key购买 nike

1)是否有symfony方法?

我有一个基本形式(未映射到数据库),其中包含一些选择字段,例如:

    $builder->add('civility', 'choice',  array('choices'=> array('m' => 'M.', 'mme' => 'Mme', 'mlle' => 'Mlle')))

在提交表单后,如何(在更好的情况下,在模板中)在操作中检索选项的标签值而不是表单提交的值? (在这种情况下, 我希望能够在模板中呈现“M.”而不是“m” )

我在想类似 $form->get("civility")->getChoiceLabel($form->get("civility")->getData())的东西

但是我在文档中没有找到类似的东西(尽管在Symfony1中有类似的东西)。

2)如果真的不是,那么最好的制作方法是什么?

因此,我正在考虑在表单使用的数据类中创建一些方法来做到这一点,例如..:
private $choices = array("civility" => array('m' => 'M.', 'mme' => 'Mme', 'mlle' => 'Mlle'));
static public function getChoiceLabel($choice_value, $field_name)
{
return self::$choices[$field_name][$choice_value];
}

static public function getChoices($field_name)
{
return self::$choices[$field_name];
}

但是问题在于,我们不应该在 Twig 模板中使用静态方法(我必须将其设置为静态以便能够在表单生成中使用它,即buildForm方法,而不要重复某些代码)。

最佳答案

您可以像这样访问所选标签及其值:

$form->get('civility')->getConfig()->getOption('choices');

阅读更多: Symfony\Component\Form\FormConfigInterface::getOption()

关于forms - Symfony 2 : Get available choices of a choice Field Type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17454011/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com