1

首先,Kohana 的文档很糟糕,在人们去“阅读文档”之前,我已经阅读了文档并且它们似乎没有多大意义,即使复制和粘贴一些代码也不适用于文档中的某些内容。

考虑到这一点,我有一条这样的路线:

//(enables the user to view the  profile / photos / blog, default is profile)
Route::set('profile', '<userid>(/<action>)(/)', array( // (/) for trailing slash
    "userid" => "[a-zA-Z0-9_]+",
    "action" => "(photos|blog)"
))->defaults(array(
    'controller' => 'profile',
    'action' => 'view'
))

这使我能够前往http://example.com/username用户个人资料,http://example.com/username/photos查看用户照片并http://example.com/username/blog查看博客。

如果有人去,http://example.com/username/something_else我希望它默认为view中指定的用户的操作,<userid>但我似乎找不到任何方法来做到这一点。

我可以这样做:

Route::set('profile', '<userid>(/<useraction>)(/)', array(
    "userid" => "[a-zA-Z0-9_]+",
    "useraction" => "(photos|blog)"
))->defaults(array(
    'controller' => 'profile',
    'action' => 'index'
))

然后在控制器中执行此操作:

public function action_index(){
    $method = $this->request->param('useraction');
    if ($method && method_exists($this, "action_{$method}")) {
        $this->{"action_{$method}"}();
    } else if ($method) {
    // redirect to remove erroneous method from url
    } else {
        $this->action_view(); // view profile
    }
}

(它可能在__construct()功能上更好,但你明白了它的要点。)

如果有更好的方法可用(确实应该有),我宁愿不这样做

我认为答案可能在正则表达式中,但以下不起作用:

$profile_functions = "blog|images";
//(enables the user to view the images / blog)
Route::set('profile', '<id>/<action>(/)', array( 
            "id" => "[a-zA-Z0-9_]+",
            "action" => "($profile_functions)",
))->defaults(array(
    'controller' => 'profile'
));
Route::set('profile_2', '<id>(<useraction>)', array(
            "id" => "[a-zA-Z0-9_]+",
            "useraction" => "(?!({$profile_functions}))",
))->defaults(array(
    'controller' => 'profile',
    'action'     => 'view'
));

尽管当 ID 后面没有任何内容时它确实匹配。

4

1 回答 1

1

我会这样设置路线:

Route::set('profile', '<userid>(/<action>)(/)', array(
    "userid" => "[a-zA-Z0-9_]+",
    "action" => "[a-zA-Z]+"
))->defaults(array(
    'controller' => 'profile',
    'action' => 'index'
))

然后在控制器 before() 方法中:

if(!in_array($this->request->_action, array('photos', 'blog', 'index')){
    $this->request->_action = 'view';
}

或类似的东西,只需验证控制器中的操作...

编辑:

这也可以工作:

if(!is_callable(array($this, 'action_' . $this->request->_action))){
    $this->request->_action = 'view';
}
于 2012-05-13T11:52:16.540 回答