覆盖FOSUserBundle注册表单时的AutowiringFailedException

时间:2017-08-18 09:22:06

标签: php symfony fosuserbundle

(在Windows 10上的WampServer上使用Symfony 3)

我正在尝试按照https://knpuniversity.com/screencast/fosuserbundle/customize-forms的说明扩展FOSBundle的用户表单 (我选择"覆盖"所以我跳过"使用getParent()扩展"部分

我得到了

**AutowiringFailedException**
Cannot autowire service "app.form.registration": argument "$class" of method "AppBundle\Form\RegistrationFormType::__construct()" must have a type-hint or be given a value explicitly.

一些配置: .. \的appbundle \表格\ RegistrationFormType.php

<?php

/*
 * This file is part of the FOSUserBundle package.
 *
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace AppBundle\Form;

use FOS\UserBundle\Util\LegacyFormHelper;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

class RegistrationFormType extends AbstractType
{
    /**
     * @var string
     */
    private $class;

    /**
     * @param string $class The User class name
     */
    public function __construct($class)
    {
        $this->class = $class;
    }

    /**
     * {@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',
            ))
            ->add('number')
        ;
    }

    /**
     * {@inheritdoc}
     */
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults(array(
            'data_class' => $this->class,
            'csrf_token_id' => 'registration',
            // BC for SF < 2.8
            'intention' => 'registration',
        ));
    }

    // BC for SF < 3.0
    /**
     * {@inheritdoc}
     */
    public function getName()
    {
        return $this->getBlockPrefix();
    }

    /**
     * {@inheritdoc}
     */
    public function getBlockPrefix()
    {
        return 'fos_user_registration';
    }
}

自定义用户类

<?php
namespace AppBundle\Entity;
use FOS\UserBundle\Model\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity
 * @ORM\Table(name="`fasuser`")
*/
class FasUser extends BaseUser
{
    /**
         * @ORM\Id
         * @ORM\GeneratedValue(strategy="AUTO")
         * @ORM\Column(type="integer")
    */
    protected $id;

    public function getId()
    {
        return $this->id;
    }


    /**
     * @ORM\Column(type="string")
     */
    protected $Number;

    public function getNumber()
    {
        return $this->Number;
    }
    public function setNumber(string $number)
    {
        $this->Number = $number;
    }

}

在services.yml中:

(...)
    app.form.registration:
        class: AppBundle\Form\RegistrationFormType
        tags:
            - { name: form.type }

在config.yml中:

(...)
fos_user:
    (...)
    registration:
        form:
            type: AppBundle\Form\RegistrationFormType

3 个答案:

答案 0 :(得分:4)

我意识到已经有一个已接受的答案,但它涉及重构表单类型类并将构造函数参数移动到options数组。这可能有点痛苦,因为这意味着你必须从创建表单的任何地方设置选项值。

基本问题是autowire无法找出字符串参数的所需值。因此有关$ class的错误消息。

幸运的是,您可以从服务定义中传递$ class。

// services.yml
AppBundle\Form\RegistrationFormType:
    tags: [form.type]
    arguments: {$class: 'AppBundle\Entity\User'}

应该做的伎俩。另请注意指定标记的更精简版本。

最后要注意的是,autowire仍然可以找出其他对象构造函数参数。因此,上述服务定义也适用于:

class RegistrationFormType extends AbstractType
{
    public function __construct(LoggerInterface $logger, string $class)

虽然我仍然对长途维护方面的autowire有一些担忧,但仍然有趣。

再一点改进。 Symfony现在可以根据服务实现的内容自动连接标签。 https://symfony.com/doc/current/service_container/tags.html#autoconfiguring-tags因此,任何实现FormTypeInterface的类都会自动用form.type

标记

现在可以将服务定义简化为:

AppBundle\Form\RegistrationFormType:
    $class: 'AppBundle\Entity\User'

跟踪正在配置的所有内容可能具有挑战性。此命令可以帮助解决问题:

php bin/console debug:container "AppBundle\Form\RegistrationFormType"

我猜测哈利波特是秘密地成为Symfony开发团队的成员。或者也许是Lucius Malfoy。

答案 1 :(得分:1)

__constructor

中删除RegistrationFormType

然后更改data_class

$resolver->setDefaults(array(
      ......
      'data_class' => 'AppBundle\Entity\User', //Your user Entity class
      ......

答案 2 :(得分:0)

我的解决方案:覆盖父构造函数

namespace App\AppBundle\Form\Type\Admin;

use App\AppBundle\Entity\User;
use FOS\UserBundle\Form\Type\ChangePasswordFormType as BaseType;

class ChangePasswordFormType extends BaseType
{
    /**
     * @param string $class The User class name
     */
    public function __construct(User $class)
    {
        parent::__construct($class);
    }

    public function getBlockPrefix()
    {
        return 'sonata_user_admin_change_password';
    }
}