3

在 Zend Framework 2 中执行以下操作是否有更好的解决方案:

我需要这两个 URL 执行一项操作 - help/section/5 和 help/section.php?id=5

我认为这种方式太复杂了:

        'helpSection' => array(
            'type' => 'Zend\Mvc\Router\Http\Segment',
            'options' => array(
                'route'    => '/help/section/:id',
                'defaults' => array(
                    'controller' => 'Application\Controller\Help',
                    'action'     => 'section',
                ),
            ),
        ),
        'helpSection2' => array(
            'type' => 'Zend\Mvc\Router\Http\Segment',
            'options' => array(
                'route'    => '/help/section.php',
                'defaults' => array(
                    'controller' => 'Application\Controller\Help',
                    'action'     => 'section',
                ),
            ),
            'child_routes'  => array(
                'query' => array(
                    'type' => 'Zend\Mvc\Router\Http\Query',
                    'options' => array(
                        'defaults' => array(
                            'id' => ':id'
                        )
                    )
                ),
            ),
        ),
4

1 回答 1

0

未经测试,但这实际上可能有效......它应该与以下内容匹配:

  • /帮助/部分
  • /help/section?queryString
  • /help/section.php
  • /help/section.php?queryString
  • /帮助/部分/1
  • /help/section/1?queryString

这将是配置:

'type' => 'segment',
'options' => array(
    'route' => '/help/section[(.php|/:id)]',
    'defaults' => array(
        'controller' => '...',
        'action' => '...'
    ),
    'constraints' => array(
        'id' => '[0-9]+'
    )
),
'may_terminate' => true,
'child_routes' => array(
    'query' => array(
        'type' => 'query'
    )
)
于 2013-03-14T13:26:35.273 回答