首先,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 后面没有任何内容时它确实匹配。