Zend框架2路由错误:解析为无效的控制器类或别名(Zend Framework 2 routing

2019-10-23 06:29发布

我想学习的Zend Framework 2,我有他们的主干应用程序启动和运行。 为了访问它,我参观的http://本地主机:8080 / 。 当访问该链接会显示他们的共通Zend的页面。 我希望能够做的是访问的http://本地主机:8080 /应用/测试 ,并把它带我到一个不同的页面,不同的布局。

这里是module.config.php

<?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
 * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   http://framework.zend.com/license/new-bsd New BSD License
 */

return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
            ),
            // The following is a route to simplify getting started creating
            // new controllers and actions without needing to create a new
            // module. Simply drop new controllers in, and you can access them
            // using the path /application/:controller/:action
            'application' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => '/application',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Application\Controller',
                        'controller'    => 'Index',
                        'action'        => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type'    => 'Segment',
                        'options' => array(
                            'route'    => '/[:controller[/:action]]',
                            'constraints' => array(
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action'     => '[a-zA-Z][a-zA-Z0-9_-]*',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
        )
    ),
    'service_manager' => array(
        'abstract_factories' => array(
            'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
            'Zend\Log\LoggerAbstractServiceFactory',
        ),
        'aliases' => array(
            'translator' => 'MvcTranslator',
        ),
    ),
    'translator' => array(
        'locale' => 'en_US',
        'translation_file_patterns' => array(
            array(
                'type'     => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern'  => '%s.mo',
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index' => 'Application\Controller\IndexController'
        ),
    ),
    'view_manager' => array(
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
            'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),
    // Placeholder for console routes
    'console' => array(
        'router' => array(
            'routes' => array(
            ),
        ),
    ),
);

为了让这对我来说工作是我的尝试:

首先,我创建了一个在应用程序/ src目录/应用/控制器/命名控制器的TestController。

接着我添加“应用/测试/索引” => DIR。 “/../view/application/test/index.phtml”在view_manager的template_map阵列。

我还添加“应用程序\控制器\测试” =>“应用程序\控制器\的TestController”到控制器阵列。

当我访问的http://本地主机:8080 /应用/测试我的错误:测试(解析为无效的控制器类或别名:测试)

我明明做错事,但TBH对Zend的文件是不是福利局友好的一切,它变得非常沮丧。 可能有人点我在正确的方向? 这里还有这么多的配置,我敢肯定,我想的东西少。 谢谢!

Answer 1:

目前该航线命名为application (父)定义的URL路径/application 。 孩子路由default但是需要传递作为第一个参数,其次是动作控制器名称。

这意味着URL会

/application/[:controller]/[:action]

所以visting

/application/test

您无意中试图获取“测试”控制器; 因此错误。

解析为无效的控制器类或别名: test

要解决这一点,我会强烈建议更换反对使用a :controller路由参数,而是使用每个控制器的行动路线。

'application' => [
    'type' => 'Literal',
    'options' => [
        'route' => '/application',
        'defaults' => [
            'controller' => 'Application\Controller\Index',
            'action'     => 'index',
        ],
        'may_terminate' => true,
        'child_routes' => [

            'test' => [
                'type' => 'Literal',
                'options' => [
                    'route' => '/test',
                    'defaults' => [
                        // controller value is inherited from parent!
                        'action' => 'test', 
                    ],
                ],
            ],

        ],
    ],
],


文章来源: Zend Framework 2 routing error: resolves to invalid controller class or alias