是否可以将CollectionType与LanguageType类一起使用?Symfony

nxagd54h  于 2022-11-16  发布在  其他
关注(0)|答案(1)|浏览(145)

我正在尝试建立表单并建议语言选择。我希望在用户要添加多种语言时复制此选择。
我的问题是:是否可以将CollectionType与LanguageType类一起使用?

  • 谢谢-谢谢
aydmsdu9

aydmsdu91#

是的,绝对的。
查看Docs中的一个示例:

$builder->add('emails', CollectionType::class, [
    // each entry in the array will be an "email" field
    'entry_type' => EmailType::class,
    // these options are passed to each "email" type
    'entry_options' => [
        'attr' => ['class' => 'email-box'],
    ],
]);

完全由您来指定要使用的底层表单类型,是TextType还是LanguageType。您可以通过entry_options键来配置类型。
希望这对你有帮助...

相关问题