我想设置我的路线,以便像word/startswith?prefix=ab
这样的网址映射到以下代码
class Controller_Word extends Controller_Mytemplate {
public function action_startswith($fragment){
/// Here $fragment should get "ab" value.
}
}
也有人能告诉我如何在Kohana 3.2控制器中获取GET数据?对于上面的场景,我可以通过
来解决class Controller_Word extends Controller_Mytemplate {
public function action_startswith($fragment=null){
if($fragment==null){
/// set $fragment to $_GET['prefix'] but in Kohana way.
}
}
}
答案 0 :(得分:2)
为什么不使用$ this-> request-> query('prefix')?