页面跳转一般运用在操作成功,比如修改数据,添加成功进行跳转
成功:
$this->success('提示XXX','User/list');
失败:
$this->error('新增失败');
失败默认跳到上一个页面
重定向(没有框架提示模板,直接跳转)
//重定向到News模块的Category操作
$this->redirect('News/category',['cate_id'=>2]);
//重定向到指定的URL地址 并且使用302
$this->redirect('http://thinkphp.cn/blog/2',302);
跳转详情到手册看