首页 > 网站 > WEB开发 > 正文

thinkphp_跳转

2024-04-27 15:19:09
字体:
来源:转载
供稿:网友

thinkphp中跳转有2中方法

success()或者error()redirect()使用范例:if ($ver->check($yanzheng, $id = '')){            $this->success('登入成功', '/user/index/index?id=10', 10);        }else{            // $this->error('登入失败', '/user/index/index?name=ljx', 10);            $this->redirect('/user/index/index', array('id' => 2), 10, '页面跳转中...');        }区别在于:success跳转中间有一个模板,并且该模板是一可以通过配置文件来指定的'TMPL_ACTION_SUCCESS'=>'Public:dispatch_jump','TMPL_ACTION_ERROR'=>'Public:dispatch_jump2',    redirect()则没有模板,直接就是echo


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表