1

我正在尝试在视图中使用 Url 帮助器重用查询参数。这是我目前的网址:

http://localhost/events/index?__orderby=name&__order=asc

我在视图中使用此代码:

$this->url('events/index', array('__page' => '2'), true);

我想获得这个网址:

http://localhost/events/index?__orderby=name&__order=asc&__page=2

但相反,我得到了这个:

http://localhost/events/index?controller=Application\Controller\Events&__page=2

这是我在 module.config.php 文件中的路线:

'events' => array(
    'type' => 'segment',
    'options' => array(
        'route' => '/eventos[/:action]',
        'constraints' => array(
            'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
        ),
        'defaults' => array(
            'controller' => 'Application\Controller\Events',
            'action' => 'index',
        ),
    ),
    'may_terminate' => true,
    'child_routes' => array(
        'index' => array(
            'type' => 'Query',
        ),
    ),
),

我究竟做错了什么?谢谢你的帮助。

4

2 回答 2

1

我认为您正在寻找的是一种 Query 路由类型,用于为您捕获 Query 字符串作为子路由:

'route' => array(
    'type'    => 'literal',
    'options' => array(
        'route'    => 'page',
        'defaults' => array(
        ),
    ),
    'may_terminate' => true,
    'child_routes'  => array(
        'query' => array(
            'type' => 'Query',
            'options' => array(
                'defaults' => array(
                    'foo' => 'bar'
                )
            )
        ),
    ),

然后,您可以使用视图助手为您生成和附加查询字符串。如果您不使用 Query 子路由,那么助手将忽略您的查询字符串。

$this->url(
    'page/query',
    array(
        'name'=>'my-test-page',
        'format' => 'rss',
        'limit' => 10,
    )
);

然后,您可以将第三个参数设置为 TRUE 并允许助手使用当前参数,就像您在示例中尝试做的那样。

文档中有示例:

http://framework.zend.com/manual/2.0/en/modules/zend.mvc.routing.html

于 2013-02-13T08:54:14.123 回答
0

你可以使用这样的东西,但在我的例子中查询参数没有被重用。

$this->url(
    'page/query',
    array(),
    array(
        'query' => array(
            'name'=>'my-test-page',
            'format' => 'rss',
            'limit' => 10,
        )
    ),
    true
);

因此,如果您想重用查询参数,您可以将它们与新参数合并,然后将它们全部添加到查询数组(3 个参数)。

于 2014-10-15T13:07:26.123 回答