2012-11-16 164 views
0

我是Zend模塊化應用程序的新手。我有一個API控制器,我想從這個控制器調用其他模塊。例如,數據上傳到這個地址:Zend Framework模塊化應用程序?

http://localhost/api/addTask 

我添加了一個自定義路由重定向所有請求API /指數
現在,我怎麼能說一個模塊或其它的indexAction方法?
例如:

function indexAction() 
{ 
    $params = $this->getRequets()->getParams(); 
    $controller = $params[0];//I know that there is issues with this line but keep going... 
    //module name is addTask 

    //call to module or controller addTask 
} 

由於提前

+0

這將是多大在ZF 2.0.x中更容易完成 –

回答

1

您可以使用_forward()從控制器
_forward($action, $controller = null, $module = null, array $params = null):
這裏調用其他操作是鏈接到ZF手動Zend Action Helpers