您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關怎么在thinkphp6.0中實現success、error,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
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有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。