5

我在 ZF2 应用程序中有以下类和我的模块配置,它给出了以下错误:

While attempting to create applicationformuserform(alias: Application\Form
\UserForm) an invalid factory was registered for this instance type.

用户窗体工厂.php

<?php

namespace Application\Factory\Form;

use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Application\Form\UserForm;

class UserFormFactory implements FactoryInterface {

    public function createService(ServiceLocatorInterface $serviceLocator) {
        $services         = $serviceLocator->getServiceLocator();
        $entityManager    = $services->get('Doctrine\ORM\EntityManager');

        $form = new UserForm($entityManager);

        return $form;
    }
}

?>

用户窗体.php

<?php

namespace Application\Form;

use Zend\Form\Form;
use Zend\InputFilter\InputFilterProviderInterface;
use Doctrine\ORM\EntityManager;

class UserForm extends Form implements InputFilterProviderInterface {

    protected $entityManager;

    public function __construct(EntityManager $entityManager) {
        parent::__construct();
        $this->entityManager = $entityManager;
    }

    public function init() {
        $this->add(array(
                'name' => 'username',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'User Name',
                ),
        ));
        $this->add(array(
                'name' => 'first_name',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'First Name',
                ),
        ));
        $this->add(array(
                'name' => 'last_name',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Last Name',
                ),
        ));
        $this->add(array(
                'name' => 'role_id',
                'type' => 'DoctrineModule\Form\Element\ObjectSelect',
                'options' => array(
                        'object_manager'     => $this->entityManager,
                        'target_class'       => 'Application\Entity\Role',
                        'property' => 'id',
                        'is_method' => true,
                        'find_method'        => array(
                                'name'   => 'getRoles',
                        ),
                        'label' => 'User Role',
                ),
        ));
    }

    public function getInputFilterSpecification() {
        return array(); // filter and validation here
    }
}

?>

模块.config.php

'form_elements' => array(
            'factories' => array(
                    'Application\Form\UserForm' => 'Application\Factory\Form\UserFormFactory',
            ),
    ),

我在另一个控制器工厂中使用这个表单工厂

用户控制器工厂.php

<?php

namespace Member\Factory\Controller;

use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
use Member\Controller\UserController;
use Application\Form\UserForm;

class UserControllerFactory implements FactoryInterface {

    public function createService(ServiceLocatorInterface $serviceLocator) {
        $services    = $serviceLocator->getServiceLocator();
        $userForm    = $services->get('FormElementManager')->get('Application\Form\UserForm');

        $controller  = new UserController($userForm);

        return $controller;
    }
}

?>

谁能告诉我可能是什么问题?

4

3 回答 3

8

找不到您的工厂。

检查您是否在控制器中使用 PSR-4 或 PSR-0 以及其他答案

简要地

  • 您是否正确命名了工厂(没有拼写错误)?
  • 您的 composer.json 是否使用 PSR-0 或 PSR-4 命名空间为您的模块更新?
  • 你跑了composer dump-autoload吗?
  • 您是否autoload_classmap.php包含过时的条目并混淆自动加载器?
  • 检查您的文件夹结构和名称
  • 确保您的工厂implements FactoryInterface

问自己“为什么我的 Factory 类在我把它放在那里时却找不到”,显然毫无疑问必须找到它?这将帮助您引导您找出问题所在。

于 2016-05-01T15:56:08.373 回答
4

一遍又一遍地查看代码后,我自己得到了答案。实际上,我的FactoryForm文件夹位于src文件夹之外,这就是 Zend 无法找到这两个文件夹的所有类的原因。

我在 src 中移动了 Factory 和 Form 文件夹,现在它工作正常。

于 2015-03-20T02:48:38.570 回答
1

我有一个类似的问题。我对我的工厂类进行了一些更改(重构 + 次要类名更改)。原来,因为我正在使用 Classmap Autoloader ...并且忘记在模块结构中重新运行 php vendor/bin/classmap_generator.php ...未找到新重命名的类。太糟糕了,没有生成“找不到类”错误。

于 2015-07-27T10:03:30.010 回答