我覆盖了FOS UserBundle注册表并添加了默认选项:' attr' =>数组(' novalidate' =>' novalidate')已回答here(这似乎是正确的方法),但由于一些奇怪的原因,未经验证的内容被添加到在表格后面而不是表格。
FormType:
<?php
namespace AppBundle\Form\Type;
use Symfony\Component\Form\FormBuilderInterface;
use FOS\UserBundle\Form\Type\RegistrationFormType as BaseType;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use AppBundle\Services\RolesHelper;
class UserType extends BaseType
{
/**
* @var RolesHelper
*/
private $roles;
/**
* @param string $class The User class name
* @param RolesHelper $roles Array or roles.
*/
public function __construct($class, RolesHelper $roles)
{
parent::__construct($class);
$this->roles = $roles;
}
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
parent::buildForm($builder, $options);
$builder->add('firstName')
->add('lastName')
->add('roles', 'choice', array(
'choices' => $this->roles->getRoles(),
'required' => false,
'multiple'=>true
));
}
/**
* {@inheritdoc}
*/
public function getName()
{
return 'user_registration';
}
/**
* @param OptionsResolverInterface $resolver
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
parent::setDefaultOptions($resolver);
$resolver->setDefaults(array(
'attr'=> array('novalidate'=>'novalidate'),
));
}
}
这是我的表单的外观:
<form action="/app_dev.php/profile/edit" method="POST" class="fos_user_profile_edit">
<div id="fos_user_profile_form" novalidate="novalidate">
// ....
</div>
</form>
为什么要在表单之后将其添加到div而不是表单元素。我做错了吗?
答案 0 :(得分:1)
novalidate="novalide"
上的div
错误。您需要将其放在表单上。
例如使用控制器
$form = $this->createForm(new TaskType(), $task, array(
'attr' => array(
'novalidate' => 'novalidate'
)
));
或直接在视图中
{{ form_start(form, {attr: {novalidate: 'novalidate'}}) }}
最终结果
<form action="/app_dev.php/profile/edit" method="POST" class="fos_user_profile_edit" novalidate="novalidate">
<div id="fos_user_profile_form">
// ....
</div>
</form>
修改强>
通过表单的最佳解决方案(适用于Symfony&lt; = 2.6)工作
/**
* @param OptionsResolverInterface $resolver
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'attr'=> array('novalidate'=>'novalidate'),
));
}
通过表单的最佳解决方案(适用于Symfony&gt; = 2.7)
在Symfony 2.7中引入了
configureOptions()
方法。 以前,该方法称为setDefaultOptions()。
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'attr'=> array('novalidate'=>'novalidate'),
));
}
重要:强>
如果您使用FOSUserBundle
,configureOptions
无法直接应用于form
代码,因为此代码会在捆绑视图中手动调用。
registration_content.html.twig
中的示例:
<form action="{{ path('fos_user_resetting_reset', {'token': token}) }}" {{ form_enctype(form) }} method="POST" class="fos_user_resetting_reset">