ZF2:模块无法初始化

时间:2013-06-23 21:20:37

标签: php zend-framework2

我正在尝试使用ZF2,当我从教程(在ZF网站上)编写代码时,我遇到了问题。我的代码:

Module.php:
<?php
namespace About;

class About
{
    public function getAutoloaderConfig()
    {
        return array(
            'Zend\Loader\ClassMapAutoloader' => array(
                __DIR__ . '/autoload_classmap.php',
            ),
            'Zend\Loader\StandardAutoloader' => array(
                'namespaces' => array(
                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
                ),
            ),
        );
    }

    public function getConfig() 
    {
        return include __DIR__ . '/config/module.config.php';
    }
}
?>

config/module.config.php:

<?php
return array(
    'controllers' => array(
        'invokables' => array(
            'About\Controller\About' => 'About\Controller\AboutController',
        ),
    ),

    'router' => array(
        'routes' => array(
            'album' => array(
                'type'      =>  'segment',
                'options'   => array(
                    'route'     => '/about[/:action][/:id]',
                    'constraints' => array(
                        'action'    =>  '[a-zA-Z][a-zA-Z0-9_-]*',
                        'id'        =>  '[0-9]+',
                    ),
                    'defaults'  => array(
                        'controller'    => 'About\Controller\About',
                        'action'        =>  'index',
                    ),
                ),
            ),
        ),
    ),

    'view_manager' => array(
        'template_path_stack' => array(
            'about' => __DIR__ . '/../view',
        )
    ),
);

问题是:

Fatal error: Uncaught exception 'Zend\ModuleManager\Exception\RuntimeException' with message 'Module (About) could not be initialized.' in /var/www/zend2/vendor/zendframework/zendframework/library/Zend/ModuleManager/ModuleManager.php on line 175

为什么它会在开始时显示? (在我的项目中:/ var / www / zend2 /)。如果我从application.config.php删除模块声明,它可以正常工作。我的问题是什么? :/

3 个答案:

答案 0 :(得分:9)

哎呀,解决了!
Module.php中,类必须命名为Module,而不是自己的名称......

答案 1 :(得分:1)

在PSR-4加载过程中遇到此问题时,您还可以检查模块名称和文件夹路径是否正确,可以在composer.json文件中自动加载:

"autoload": {
  "psr-4": {
    "YourModule\\": "module/YourModule/src/",
    ... other modules ...
  }
},

然后修复问题后运行:

composer update

答案 2 :(得分:0)

我相信您的课程索引已过时,您可以按照以下命令进行操作:

    composer install -o