2011-09-26 94 views

回答

1

如果使用默认的路由,你可以这样做:

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

一般情况下:

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

还是看Request->execute()