1

我正在尝试在我的列表页面中创建编辑记录功能。但是在单击针对记录的编辑链接时出现以下错误。

发生 404 错误页面未找到。

请求的 URL 无法通过路由匹配。没有可用的例外

我用于编辑视图的 module.config.php 文件代码是:

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

我的专辑列表页面代码用于调用编辑控制器并将 id 传递给:

<a href="<?php echo $this->url('edit',
             array('action'=>'edit', 'id' => $album->id));?>">Edit</a>

和 editAction 代码是:

$id = (int) $this->params()->fromRoute('id', 0);

请让我知道我缺少什么。我是zend框架的新手。

4

4 回答 4

1

i think you have to use 'type' => 'segment' have a look on the documentation

<?php
'edit' => array(
    'type'    => 'segment', /* <--- use segment*/
    'options' => array(
        'route'       => '/album[/][:action][/:id]',
        'constraints' => array(
            'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
            'id'     => '[0-9]+',
        ),
        'defaults'    => array(
            'controller' => 'Application\Controller\Album',
            'action'     => 'edit',
        ),
    ),
),
于 2014-04-07T07:28:42.137 回答
0

现在看看我在 module.config.php 中的路由脚本是这样的。

'album' => array(
            'type' => 'literal',
            'options' => array(
                'route' => '/album/',
                'defaults' => array(
                    '__NAMESPACE__' => 'Application\Controller',
                    'controller'    => 'Album',
                    'action'        => 'album',
                ),
            ),
            'may_terminate' => true,
                'child_routes' => array(
                 'add' => array(
            'type' => 'Segment',
            'options' => array(
                'route' => '/album/[:add]',
                'constraints' => array(
                                'add' => '[a-zA-Z0-9_-]+'
                            ),
                'defaults' => array(
                    '__NAMESPACE__' => 'Application\Controller',
                    'controller'    => 'Album',
                    'action'        => 'add',
                ),
            ),
        ),
        'edit' => array(
            'type' => 'Segment',
            'options' => array(
                'route' => '/album/[:edit][/:id]',
                'constraints' => array(
                                'edit' => '[a-zA-Z0-9_-]+'
                            ),
                'defaults' => array(
                    '__NAMESPACE__' => 'Application\Controller',
                    'controller'    => 'Album',
                    'action'        => 'edit',
                ),
            ),
        ),
),
    ),

在这种情况下,如果我单击任何链接,则仅显示专辑页面而不显示其他我正在点击的链接。

于 2014-04-07T08:36:21.980 回答
0

最后我得到了解决方案,现在我的应用程序运行良好......我只是将上面的代码替换为:

'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(
                         'controller' => 'Application\Controller\Album',
                         'action'     => 'album',
                     ),
                 ),
             ),
于 2014-04-07T10:08:11.183 回答
0

关于该type选项的建议是正确的,但是您还需要该may_terminate选项以确保路由器知道该路由可以匹配

 'edit' => array(
        'type' => 'segment',
        'options' => array(
            'route'    => '/album[/][:action][/:id]',
                 'constraints' => array(
                     'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                     'id'     => '[0-9]+',
            ),
            'defaults' => array(
                 'controller' => 'Application\Controller\Album',
                 'action'     => 'edit',
            ),
        ),
        'may_terminate' => true, // Add this line
    ),
于 2014-04-07T08:16:18.527 回答