致命错误:类“Symfony\Component\Form”未找到

发布于 2024-10-20 05:38:41 字数 950 浏览 9 评论 0原文

当我为用户创建表单时。它显示以下错误

Fatal error: Class 'Symfony\Component\Form' not found in D:\wamp\www\sandbox\src\Sensio\HelloBundle\User\UserForm.php on line 7"

以下是 UserForm.php 的代码

<?php

use Symfony\Component\Form;
use Symfony\Component\Form\TextField;
use Symfony\Component\Form\EmailField;

class UserForm extends Form
{
    protected function configure()
    {
        $this->add(
               new TextField('name',
                               array('max_length' => 100,
                                   'required' => true
                                   )
                         )
              );
        $this->add(
               new EmailField('email',
                               array('max_length' => 100,
                                   'required' => true
                                   )
                         )
              );
    }
}

When i'm creating form for user. It displaying below error

Fatal error: Class 'Symfony\Component\Form' not found in D:\wamp\www\sandbox\src\Sensio\HelloBundle\User\UserForm.php on line 7"

Below are the code of UserForm.php

<?php

use Symfony\Component\Form;
use Symfony\Component\Form\TextField;
use Symfony\Component\Form\EmailField;

class UserForm extends Form
{
    protected function configure()
    {
        $this->add(
               new TextField('name',
                               array('max_length' => 100,
                                   'required' => true
                                   )
                         )
              );
        $this->add(
               new EmailField('email',
                               array('max_length' => 100,
                                   'required' => true
                                   )
                         )
              );
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鲸落 2024-10-27 05:38:42

将 'use Symfony\Component\Form' 替换为 'use Symfony\Component\Form\Form'(第 3 行)。

Replace 'use Symfony\Component\Form' by 'use Symfony\Component\Form\Form' (line 3).

甜柠檬 2024-10-27 05:38:42

如果您收到

致命错误:在 symfony 中找不到类“UsersForm”,

class contactActions extends sfActions
{
    public function executeIndex()
    {
        $this->form = new ContactForm();
    }
}

请使用以下命令:

$ php symfony cc

$ php symfony 缓存:清除

If you are getting

Fatal error: Class 'UsersForm' not found in symfony

class contactActions extends sfActions
{
    public function executeIndex()
    {
        $this->form = new ContactForm();
    }
}

use below command :

$ php symfony cc

OR

$ php symfony cache:clear

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文