douzhuoxia0587 2018-09-25 15:16
浏览 49
已采纳

Symfony 2.7:无法加载类型

I am creating a simple contact form. My custom type starts this way:

<?php

namespace MyCompany\AppBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Validator\Constraints\Email;
use Symfony\Component\Validator\Constraints\NotBlank;

class ContactType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {

... and my controller starts this way:

<?php

namespace MyCompany\AppBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;

class ContactController extends Controller
{
    public function contactAction(Request $request)
    {
        // Create the form according to the FormType created previously.
        // And give the proper parameters
        $form = $this->createForm('MyCompany\AppBundle\Form\ContactType',null,array(
            // To set the action use $this->generateUrl('route_identifier')
            'action' => $this->generateUrl('myapplication_contact'),
            'method' => 'POST'
        ));

... but I find that my application is unable to load the type. I get the following exception message:

Could not load type "MyCompany\AppBundle\Form\ContactType" 500 Internal Server Error - InvalidArgumentException

What can I do to start debugging this?

  • 写回答

2条回答 默认 最新

  • dongpo7467 2018-09-25 15:28
    关注

    Since you are using Symfony 2.7 the proper way to create a form in the controller using a form type class is:

    <?php
    
    namespace MyCompany\AppBundle\Controller;
    
    use Symfony\Bundle\FrameworkBundle\Controller\Controller;
    use Symfony\Component\HttpFoundation\Request;
    
    use MyCompany\AppBundle\Form\ContactType; // add this
    
    class ContactController extends Controller
    {
        public function contactAction(Request $request)
        {
            // Create the form according to the FormType created previously.
            // And give the proper parameters
            $form = $this->createForm(new ContactType(), null, array(
                // To set the action use $this->generateUrl('route_identifier')
                'action' => $this->generateUrl('myapplication_contact'),
                'method' => 'POST'
            ));
    

    Refer to the symfony documentation

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 全书网Java爬取数据
  • ¥15 SAP HANA SQL Script 。SUM OVER 怎么加where
  • ¥15 怎么获取红包封面的原始链接,并且获取红包封面序列号
  • ¥100 微信小程序跑脚本授权的问题
  • ¥60 为什么使用python对地震数据进行umap降维后,数据成图会出现不连续的现象
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题