使用此处的默认说明:
https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/doc/index.md
在我的注册表单中设置自定义“名称”字段效果很好。
我想要名字两个字段。一个用于名字,另一个用于姓氏。所以首先我只想将名称字段覆盖为名字。通过将实体更改为名字会导致此错误:
Could not load type "acme_user_registration"
当我简单地更改列标题时,为什么会爆炸?我也添加了getter / setter。我认为这是services.xml的问题,但我不知道服务如何与yml设置和表单生成器一起使用。
user.php的
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", length=255)
*
* @Assert\NotBlank(message="Please enter your name.", groups={"Registration", "Profile"})
* @Assert\Length(
* min=3,
* max="255",
* minMessage="The name is too short.",
* maxMessage="The name is too long.",
* groups={"Registration", "Profile"}
* )
*/
protected $firstname;
public function __construct()
{
parent::__construct();
// your own logic
}
RegistrationFormType.php
<?php
namespace MACP\CmsBundle\Form\Type;
use Symfony\Component\Form\FormBuilderInterface;
use FOS\UserBundle\Form\Type\RegistrationFormType as BaseType;
class RegistrationFormType extends BaseType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
parent::buildForm($builder, $options);
// add your custom field
$builder->add('firstname');
}
public function getFirstname()
{
return 'acme_user_registration';
}
}
的services.xml
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="acme_user.registration.form.type" class="MACP\CmsBundle\Form\Type\RegistrationFormType">
<tag firstname="form.type" alias="acme_user_registration" />
<argument>%fos_user.model.user.class%</argument>
</service>
</services>
</container>
config.yml
fos_user:
db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'propel'
firewall_name: main
user_class: MACP\CmsBundle\Entity\User
registration:
form:
type: acme_user_registration
答案 0 :(得分:1)
请尝试更改方法:
public function getFirstname()
{
return 'acme_user_registration';
}
到:
public function getName()
{
return 'acme_user_registration';
}
此方法告诉您如何调用此表单。然后在配置中使用此名称。其余的看起来对我很好,但我们会尝试。