首先,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之后没有任何内容匹配。
答案 0 :(得分: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';
}
or somethig similiar,只需验证控制器中的动作......
编辑:
这也可行:
if(!is_callable(array($this, 'action_' . $this->request->_action))){
$this->request->_action = 'view';
}