欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

Phalcon 多模块配置问题

程序员文章站 2022-06-09 17:36:47
...
官方手册中有以下代码,注册多个模块
// 注册模块
$application->registerModules(
    array(
        'frontend' => array(
            'className' => 'Multiple\Frontend\Module',
            'path'      => '../apps/frontend/Module.php',
        ),
        'backend'  => array(
            'className' => 'Multiple\Backend\Module',
            'path'      => '../apps/backend/Module.php',
        )
    )
);

其中'className' => 'Multiple\Frontend\Module',是什么意思,按官方文件配置,总显示以下:

'Multiple\Frontend\Module' wasn't found in the dependency injection container

回复内容:

官方手册中有以下代码,注册多个模块

// 注册模块
$application->registerModules(
    array(
        'frontend' => array(
            'className' => 'Multiple\Frontend\Module',
            'path'      => '../apps/frontend/Module.php',
        ),
        'backend'  => array(
            'className' => 'Multiple\Backend\Module',
            'path'      => '../apps/backend/Module.php',
        )
    )
);

其中'className' => 'Multiple\Frontend\Module',是什么意思,按官方文件配置,总显示以下:

'Multiple\Frontend\Module' wasn't found in the dependency injection container

  1. 是否存在 apps/frontend/Module.php 这个文件,并且路径正确

  2. 在该文件中,是否存在名称为 Module 的class

  3. 该class的命名空间是否为 Mutiple\Frontend

挨个检查吧(溜