3

Zend Framework 2で次のことを行うためのより良い解決策はありますか:

help/section/5 と help/section.php?id=5 という 2 つの URL が必要です。

この方法は複雑すぎると思います:

        '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?クエリ文字列
  • /help/section.php
  • /help/section.php?クエリ文字列
  • /ヘルプ/セクション/1
  • /help/section/1?クエリ文字列

これは設定になります:

'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 に答える