thinkphp3.2 控制器页面跳转和重定向

    public function index(){
        $this->success('Yes',U('Home/User/index'));//成功跳转
        $this->error('error',U('Home/User/index'));//失败

         //直接重定向跳转(3秒后跳转到指定路径)
         redirect(U('Home/User/index'), 3, '页面跳转中...'); //使用大U
         redirect('/Home/User/index', 3, '页面跳转中...');
         redirect('http://baidu.com', 3, '页面跳转中...');

    }

 

上一篇:linux发http请求


下一篇:python +django 实现码云(gitee)三方登陆