我有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?
答案 0 :(得分:8)
前端控制器有三种重定向功能:
_redirect()
_redirectUrl()
_redirectReferer()
_redirect('frontName/controllerName/actionName/param1/param2')
用于内部重定向
_redirectUrl($fullUrl)
用于外部重定向
_redirectReferer()
用于重定向到引用网址。
希望这能提供更多信息。
答案 1 :(得分:1)
您可以在 test1 操作中添加类似内容。
$this->_redirect('*/*/test2', array(if you want to pass something then from here you can pass ));