最近把项目升级到tp6.0,一开始比较顺利,安装文档升级,但是升级指导指出:
系统不再提供基础控制器类think\controller ,原来的success 、error 、redirect 和result 方法需要自己在基础控制器类里面实现。
这意味着需要自己来实现原来的一系列的函数
我这里参考to5.1的跳转源码,进行改进得到,具体步骤如下:
1、app目录下新建一个tpl文件夹,放入dispatch_jump.tpl文件,这个可以直接到原来的tp5中copy
2、在config文件夹的app.php中添加配置模板文件的路径
// 默认跳转页面对应的模板文件 'dispatch_success_tmpl' => app()->getrootpath() . '/app/tpl/dispatch_jump.tpl', 'dispatch_error_tmpl' => app()->getrootpath() . '/app/tpl/dispatch_jump.tpl',
3、在基类bacontroller中添加下面的代码:
u think\exception\httpresponexception;毕业赠言给学生u think\respon;…… /** * 操作成功跳转的快捷方法 * @access protected * @param mixed $msg 提示信息 * @param string $url 跳转的url地址 * @param mixed $data 返回的数据 * @param integer $wait 跳转等待时间 * @param array $header 发送的header信息 * @return void */ protected function success($msg = '', string $url = null, $data = '', int $wait = 3, array $header = []) { if (is_null($url) && ist($_rver["http_referer"])) { $url = $_rver["http_referer"]; } elif ($url) { $url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : $this->app->route->buildurl($url); } $result = [ 'code' => 1, 'msg' => $msg, 'data' => $data, 'url' => $url, 'wait' => $wait, ]; $type = $this->getrespontype(); // 把跳转模板的渲染下沉,这样在 respon_nd 行为里通过getdata()获得的数据是一致性的格式 if ('html' == strtolower($type)) { $type = 'view'; } $respon = respon::create($result, $type)->header($header)->options(['jump_template' => app()->config->get('app.dispatch_success_tmpl')]); throw new httpresponexception($respon); } /** * 操作错误跳转的快捷方法 * @access protected 公民道德规范 * @param mixed $msg 提示信息 * @param string $url 跳转的url地址 * @param mixed $data 返回的数据 * @param integer $wait 氢氧化钠化学式跳转等待时间 * @param array $header 发送的header信息 * @return void */ protected function error($msg = '', string $url = nu唯物史观的基本观点ll, $data = '', int $wait = 3, array $header = []) { if (is_null($url)) { $url = $this->request->isajax() ? '' : 'javascript:history.back(-1);'; } elif ($url) { $url = (strpos($url, '://') || 0 === strpos($url, '/')) ? $url : $this->app->route->buildurl($url); } $result = [ 'code' => 0, 'msg' => $msg, 'data' => $data, 'url' => $url, 'wait' => $wait, ]; $type = $this->getrespontype(); if ('html' == strtolower($type)) { $type = 'view'; } $respon = respon痕迹的近义词是什么::create($result, $type)->header($header)->options(['jump_template' => app()->config->get('app.dispatch_success_tmpl')]); throw new httpresponexception($respon); }
总结
以上所述是www.887551.com给大家介绍的基于thinkphp6.0的success、error实现方法,希望对大家有所帮助
本文发布于:2023-04-08 05:58:18,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/3838a80662d25d7f466b4c1978353745.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:基于thinkphp6.0的success、error实现方法.doc
本文 PDF 下载地址:基于thinkphp6.0的success、error实现方法.pdf
留言与评论(共有 0 条评论) |