基于thinkphp6.0的success、error实现方法
程序员文章站
2022-10-10 20:42:11
最近把项目升级到tp6.0,一开始比较顺利,安装文档升级,但是升级指导指出:
系统不再提供基础控制器类 think\controller ,原来的 success...
最近把项目升级到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、在基类basecontroller中添加下面的代码:
use think\exception\httpresponseexception; use think\response; …… /** * 操作成功跳转的快捷方法 * @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) && isset($_server["http_referer"])) { $url = $_server["http_referer"]; } elseif ($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->getresponsetype(); // 把跳转模板的渲染下沉,这样在 response_send 行为里通过getdata()获得的数据是一致性的格式 if ('html' == strtolower($type)) { $type = 'view'; } $response = response::create($result, $type)->header($header)->options(['jump_template' => app()->config->get('app.dispatch_success_tmpl')]); throw new httpresponseexception($response); } /** * 操作错误跳转的快捷方法 * @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 = null, $data = '', int $wait = 3, array $header = []) { if (is_null($url)) { $url = $this->request->isajax() ? '' : 'javascript:history.back(-1);'; } elseif ($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->getresponsetype(); if ('html' == strtolower($type)) { $type = 'view'; } $response = response::create($result, $type)->header($header)->options(['jump_template' => app()->config->get('app.dispatch_success_tmpl')]); throw new httpresponseexception($response); }
总结
以上所述是小编给大家介绍的基于thinkphp6.0的success、error实现方法,希望对大家有所帮助
推荐阅读
-
基于Java语言的国密SM2/SM3/SM4算法库 , 包含加密/解密、签名/验签、摘要计算的实现代码和测试方法 。
-
php基于dom实现读取图书xml格式数据的方法
-
基于Session的国际化实现方法
-
php基于ob_start(ob_gzhandler)实现网页压缩功能的方法
-
java基于odbc连接oracle的实现方法
-
基于Session的国际化实现方法
-
基于thinkPHP3.2实现微信接入及查询token值的方法
-
PHP基于Redis消息队列实现发布微博的方法
-
java基于odbc连接oracle的实现方法
-
PHP基于ICU扩展intl快速实现汉字转拼音及按拼音首字母分组排序的方法