2011-09-26 69 views

回答

1

如果使用默認的路由,你可以這樣做:

Request::factory('welcome/index2')->execute(); 

一般情況下:

$this->request 
    ->controller('welcome') 
    ->action('index2') 
    ->execute(); 

還是看Request->execute()