Zend framework2模块中的多个控制器

时间:2013-12-04 10:46:12

标签: zend-framework2

我在一个模块中添加了许多控制器时遇到了问题。 Zend2对于初学者来说很难。

我用控制器“Home”和“News”创建了Module“Home”。 HomeController运行正常,但是当我尝试连接到NewsController时,我收到致命错误:在C:\ wamp \ www \ zend2 \ vendor \ zendframework \ zendframework \ library \中找不到类'Home \ Controller \ NewsController'第170行的Zend \ ServiceManager \ AbstractPluginManager.php。我不知道问题出在哪里。

我的module.config看起来像

return array(
    'controllers' => array(
        'invokables' => array(
            'Home\Controller\Home' => 'Home\Controller\HomeController',
            'Home\Controller\News' => 'Home\Controller\NewsController',
        ),
    ),
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'segment',
                'options' => array(
                    'route' => '/home[/][:action]',
                    'constraints' => array(
                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*'
                    ),
                    'defaults' => array(
                        'controller' => 'Home\Controller\Home',
                        'action' => 'index',
                    ),
                ),
            ),
            'news' => array(
                'type' => 'segment',
                'options' => array(
                    'route' => '/news[/][:action]',
                    'constraints' => array(
                        'action' => '[a-zA-Z][a-zA-Z0-9_-]*'
                    ),
                    'defaults' => array(
                        'controller' => 'Home\Controller\News',
                        'action' => 'index',
                    ),
                ),
            ),

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

我正在使用导航工厂,因此导航文件如下所示:

return array(
    'navigation' => array(
        'default' => array(
            array(
                'label' => 'Home',
                'route' => 'home'
            ),
            array(
                'label' => 'News',
                'route' => 'news'
            ),
        ),
    ),
    'service_manager' => array(
        'factories' => array(
                'navigation' => 'Zend\Navigation\Service\DefaultNavigationFactory'
        )
    )
);

Module.php看起来像

namespace Home;

class Module {

    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';
    }

}

而NewsController看起来像

namespace News\Controller;

use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;

class NewsController extends AbstractActionController {
    public function indexAction()
    {
        return array();
    }
}

1 个答案:

答案 0 :(得分:0)

在您的控制器类中,您将命名空间声明为:

namespace News\Controller;

但是在您的模块配置中,您将可调用类列为Home\Controller\NewsController。命名空间需要匹配,因此您可能希望将控制器类命名空间更改为:

namespace Home\Controller;