1

我是 zend 框架 2 的新手,并试图将专辑模块添加到 ZF2 的 skelton 应用程序中,但出现 404 错误页面未找到。请求的 URL 无法通过路由匹配。我的 Album/config/module.config.php 代码是

<?php
    return array(
        'controllers' => array(
            'invokables' => array(
                'Album\Controller\Album' => 'Album\Controller\AlbumController',
            ),
        ),
        'view_manager' => array(
            'template_path_stack' => array(
                'album' => __DIR__ . '/../view'
             ),
         ),
        'router' => array(
            'routes' => array(
                'album' => array(
                    //'type' => 'segment',
                    'type' => 'Zend\Mvc\Router\Http\Literal',
                    'options' => array(
                        //'route' => '/album[/][:action][/:id]',
                        //'route'       => '/:controller[.:formatter][/:id]',
                        'route' => '/album',
                        'constraints' => array(
                            'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                            'formatter'  => '[a-zA-Z][a-zA-Z0-9_-]*',
                            'id' => '[0-9]+',
                        ),
                        'defaults' => array(
                             '__NAMESPACE__' => 'Album\Controller',
                            'controller' => 'Album\Controller\Album',
                            'action' => 'index',
                        ),
                    ),
                ),
            ),
        ),
    );

在 Application/config/module.config.php 我添加了这些行:

'modules' => array(
        'Application',    
        'Album'
    ),
    'module_listener_options' => array(
        'config_glob_paths' => array(
            'config/autoload/{,*.}{global,local}.php',
        ),
        'module_paths' => array(
            './module',
            './vendor',
        ),
    ),

任何人都可以帮助我更正代码...

4

3 回答 3

1

问题出在您的路线配置中:

'defaults => array(
    '__NAMESPACE__' => 'Album\Controller',
    'controller'    => 'Album\Controller\Album',
)

有了这个,你告诉路由器加载以下类

Album\Controller\Album\Controller\Album

__NAMESPACE__被添加到您指定为 的任何内容之前controller。所以你有两个选择:

  1. 跳过__NAMESPACE__
  2. 修改controller

虽然这完全取决于你,但我个人选择跳过,__NAMESPACE__因为最终我们所做的只是使用键和我理解事物的方式,键不是类,因此不应该有命名空间:D

于 2013-09-30T05:56:08.363 回答
0

你需要做些小改动,伙计……你的代码没有错。

命名空间

如果您指定命名空间,则必须在路由中仅包含控制器名称:

'defaults' => array(
    '__NAMESPACE__' => 'Album\Controller',
    'controller' => 'Album' /* Not like this: 'Album\Controller\Album' */
    'action' => 'index',
),

如果没有包含命名空间

'defaults' => array(
    'controller' => 'Album\Controller\Album' /* Include this */
    'action' => 'index',
 ),
于 2013-10-05T10:05:57.553 回答
0

您应该在 ZendSkeletonApplication 中使用类似 Application 模块的配置:

'router' => array(
    'routes' => array(
        'album' => array(
            'type'    => 'Literal',
            'options' => array(
                'route'    => '/album',
                'defaults' => array(
                    '__NAMESPACE__' => 'Album\Controller',
                    'controller'    => 'Album',
                    '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(
                        ),
                    ),
                ),
            ),
        ),
    ),
),

您只需添加以下代码:

'album' => array(
                    'type'    => 'Segment',
                    'options' => array(
                        'route'    => '/album[/:action][/:id]',
                        'constraints' => array(
                            'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                            'id'     => '[0-9]*',
                        ),
                        'defaults' => array(
                            '__NAMESPACE__' => 'Album\Controller',
                            'controller'    => 'Album',
                            'action'        => 'index',
                        ),
                    ),
                ),

将此代码添加到 'child-routes' 键,然后您将访问 url:localhost/module[/:controller][/:action][/:id]。现在它成功了!

于 2014-04-22T13:57:56.497 回答