2012-04-09 55 views
0

現在,當我想在我的控制器進行操作後重定向我需要寫:如何在控制器中構建乾淨的重定向?

function anActionAction(){ 
    $this->redirect("a string url like mysite/controller/action"); 
} 

是否有建立的URL更清潔的方式的方式?

例如,在視圖腳本,如果我要得到我使用url傭工像數組中的作用:

echo $this->url(array('controller'=>'snippets','action'=>'index')); 

那麼,有沒有辦法在傳遞一個數組而不是一個字符串重定向方法? 謝謝。

回答

1

使用Redirector Action Helper

$this->_helper->redirector($action, $controller = null, $module = null, $params = null) 

這將間接調用此動作助手的gotoSimple()方法。

+0

我不知道它的感謝。 – mpm 2012-04-09 12:08:43

相關問題