我刚刚在Symfony项目中配置并准备了FOSUserBundle。但是,当我尝试显示寄存器视图时,看起来像这样:
注册表单(默认情况下)应如下所示:
所有我配置的都是在Documentation,我不知道发生了什么。
这是来自FOSUserBundle的RegistrationFormType.html.twig:
class RegistrationFormType extends AbstractType
{
...
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('email', LegacyFormHelper::getType('Symfony\Component\Form\Extension\Core\Type\EmailType'), array('label' => 'form.email', 'translation_domain' => 'FOSUserBundle'))
->add('username', null, array('label' => 'form.username', 'translation_domain' => 'FOSUserBundle'))
->add('plainPassword', LegacyFormHelper::getType('Symfony\Component\Form\Extension\Core\Type\RepeatedType'), array(
'type' => LegacyFormHelper::getType('Symfony\Component\Form\Extension\Core\Type\PasswordType'),
'options' => array('translation_domain' => 'FOSUserBundle'),
'first_options' => array('label' => 'form.password'),
'second_options' => array('label' => 'form.password_confirmation'),
'invalid_message' => 'fos_user.password.mismatch',
))
;
}
...
}
首先,您应该运行翻译组件
在config.yml行取消注释
translator: { fallbacks: ["en"] }
并且(如评论中所述)阅读有关压倒一切的观点