1

我正在运行 Symfony 3.4 和 FOSUserBundle(主版本)。我在自定义用户实体中添加了 2 个新字段:

..我现在正在尝试使用这两个新字段编辑配置文件编辑表单。我遵循了本教程:覆盖默认 FOSUserBundle 表单,这是我的自定义表单:

<?php

namespace MyCompany\PimCoreBundle\Form\Type;

use FOS\UserBundle\Util\LegacyFormHelper;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Security\Core\Validator\Constraints\UserPassword;
use Symfony\Component\Validator\Constraints\NotBlank;

class ProfileFormType extends AbstractType
{

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        parent::buildForm($builder, $options);
        $builder->add('firstname', 'text', array('label' => 'Firstname'));
        $builder->add('lastname', 'text', array('label' => 'Lastname'));
    }

    public function getParent()
    {
        return 'FOS\UserBundle\Form\Type\ProfileFormType';
    }

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

}


?>

我的配置:

fos_user:
    db_driver: orm # other valid values are 'mongodb' and 'couchdb'
    firewall_name: main
    user_class: MyCompany\PimCoreBundle\Entity\User
    from_email:
        address: "contact@MyCompany.com"
        sender_name: "MyCompany"
    profile:
        form:
            type: MyCompany\PimCoreBundle\Form\Type\ProfileFormType

..和我的服务:

services:
    app.profile.form.type:
        class: MyCompany\PimCoreBundle\Form\Type\ProfileFormType
        tags:
            - { name: form.type, alias: app_user_profile }

我在 config + services ymal 文件中进行了更改。但我得到这个错误:

无法加载类型“app_user_profile”:类不存在。

无法理解出了什么问题以及如何调试它!

4

1 回答 1

0

这个问题自己消失了!

今天早上我只做了一个简单的刷新,它就可以工作了。我怀疑服务器(APC 等)上的缓存系统是有罪的。

于 2018-01-23T08:50:59.003 回答