12

我的控制器中有以下重定向脚本(Zend Framework 2)

return $this->redirect()->toRoute('default', array(
                        'controller' => 'admin',
                        'action' =>  'index'
));

目前重定向到localhost/zf2/public/admin/index

如何使用额外的参数重定向?

喜欢:

localhost/zf2/public/admin/index/update/1

或者localhost/zf2/public/admin/index/page/2

我试过这个:

return $this->redirect()->toRoute('default', array(
                        'controller' => 'admin',
                        'action' =>  'index'
                            'param' => 'updated/1'
                        ));

但是被重定向到localhost/ttacounting/public/admin/index/updated%2F1

4

6 回答 6

19

这是一个工作示例。路由脚本

$this->redirect()->toRoute('myaccount', array(
    'controller' => 'admin',
    'action' =>  'index',
    'param1' =>'updated',
    'param2'=>'1'
));

然后,在 module.config.php 中设置参数

'myaccount' => array(
    'type' => 'Segment',
    'options' => array(
    'route'    => '/myaccount[/:action][/:param1][/:param2]',
    'defaults' => array(
            'controller' => 'Main\Controller\MyAccount',
            'action'     => 'index',
        ),
    ),
),

这会将您带到 MyAccountController、indexAction,param1='updated' 和 param2='1'。但在您的示例情况下,操作应使用参数名称“更新”和参数值“1”进行更新

于 2013-10-06T01:30:26.697 回答
7

This works for me.

The route:

'user_view' => array(
    'type'    => 'Segment',
    'options' => array(
        'route' => '/user/view[/:user_id]',
        'defaults' => array(
            'controller' => 'user',
            'action'     => 'viewUser',
        ),
    ),
), // End of user_view route

And the Redirect from the controller:

return $this->redirect()->toRoute('user_view', array('user_id'=>$user_id));

Notice that the Array key in the redirect statement correspond to the route segment: [/:user_id] = 'user_id'=>$user_id

于 2012-05-19T12:57:24.243 回答
3

另一种方法是将其作为第三个参数传递(在 ZF3 上测试),而不是更新路由:

$this->redirect()->toRoute('dashboard', [], ['query' => ['welcome' => 1]]);
于 2016-11-16T09:45:14.333 回答
1

此语句将您重定向到 localhost/leads/edit/112345:

return $this->redirect()->toRoute('leads', array(
                'action' => 'edit',
                'id' => 112345
            ));

id 是我期望在editAction 中的参数。

希望能帮助到你。

于 2012-11-14T16:44:51.220 回答
0

我从上述解决方案中尝试了一些,但没有一个对我有用。我带来了以下内容。

//Return to specific product pricing 
return $this->redirect()->toRoute('showpricing', array('id' => $form_values['id']));


  /* show pricing */
          'showpricing' => array(
              'type' => 'Zend\Mvc\Router\Http\Segment',
              'options' => array(
                  'route'   => '/product/showpricing[?id=:id]',
                  'defaults' => array(
                      'controller' => 'Product\Controller\Product',
                      'action'     => 'showpricing',
                  )
              )
          ),

希望这会对某人有所帮助。

于 2014-10-31T04:34:27.790 回答
0

试试这条路线而不是你以前的路线

return $this->redirect()->toRoute('default', [
    'controller' => 'admin',
    'action' =>  'index'
    'updated' => '1'
]);
于 2013-05-18T15:43:30.787 回答