ZF2 - 如果路由器匹配多条路由,将会调度什么?

时间:2013-02-27 21:03:32

标签: zend-framework2

那么 - 如果我有一个可能与许多路线相匹配的网址,那么该路线会赢?将分派哪些行动?

是否简单 - 首先定义 - 首先发送?

以下是路线:

'route-catchall' => array(
    'type' => 'regex',
    'options' => array(
        'regex' => '/api/v1/.*',
        'defaults' => array(
            'controller' => 'IndexController',
            'action'     => 'apiCatchAll',
        ),
    ),
),
'route-test1' => array(
    'type' => 'literal',
    'options' => array(
        'route' => '/api/v1/route1',
        'defaults' => array(
            'controller' => 'IndexController',
            'action'     => 'apiRoute1',
        ),
    ),
),

此网址example.com/api/v1/route1会路由到apiRoute1还是apiCatchAll

1 个答案:

答案 0 :(得分:18)

由于附加到路由堆栈的路由存储在priority list中,因此第一个匹配的路由将获胜。

路线通过priority setting附加到主路线。优先级越高意味着首先检查路由。默认情况下,读取第一个附加路由(如果它们都具有相同的优先级或根本没有优先级)。

'route-catchall' => array(
    'type' => 'regex',
    'options' => array(
        'regex' => '/api/v1/.*',
        'defaults' => array(
            'controller' => 'IndexController',
            'action'     => 'apiCatchAll',
        ),
    ),
    'priority' => -1000,
),
'route-test1' => array(
    'type' => 'literal',
    'options' => array(
        'route' => '/api/v1/route1',
        'defaults' => array(
            'controller' => 'IndexController',
            'action'     => 'apiRoute1',
        ),
    ),
    'priority' => 9001, // it's over 9000!
),

在此示例中,route-test1将首先匹配,因为它具有高优先级。