我有magento网站。

我有一个控制器,如何在该控制器中重定向到另一个功能?

这意味着,有两个功能:

1.test()


i want to redirect from test1() to test2()


我怎样才能做到这一点?

How can i redirect from one function to another function in the same controller?

最佳答案

您可以在test1操作中放入类似的内容。

$this->_redirect('*/*/test2', array(if you want to pass something then from here you can pass ));

09-26 16:02