今天需要实现一个功能,如标题所示,页面url已经传参,这里在页面中选中不同的tab会跳转到不同的页面
这里直接在{}后面直接添加?tab=**即可
<a class=”item” href=”{:url(‘user/usercenter’, array(‘username’=>$username))}?tab=attention”>
后台代码大致框架如下:
public function usercenter($tab=null) {
switch($tab){
case null :
return View::fetch('doc');
case 'attention':
return View::fetch('attention');
case 'purchase':
return View::fetch('purchase');
}
}
Comments