您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)怎么在thinkphp6.0中實(shí)現(xiàn)success、error,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
1、app目錄下新建一個(gè)tpl文件夾,放入dispatch_jump.tpl文件,這個(gè)可以直接到原來的tp5中copy
2、在config文件夾的app.php中添加配置模板文件的路徑
// 默認(rèn)跳轉(zhuǎn)頁面對應(yīng)的模板文件 '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; …… /** * 操作成功跳轉(zhuǎn)的快捷方法 * @access protected * @param mixed $msg 提示信息 * @param string $url 跳轉(zhuǎn)的URL地址 * @param mixed $data 返回的數(shù)據(jù) * @param integer $wait 跳轉(zhuǎn)等待時(shí)間 * @param array $header 發(fā)送的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(); // 把跳轉(zhuǎn)模板的渲染下沉,這樣在 response_send 行為里通過getData()獲得的數(shù)據(jù)是一致性的格式 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); } /** * 操作錯(cuò)誤跳轉(zhuǎn)的快捷方法 * @access protected * @param mixed $msg 提示信息 * @param string $url 跳轉(zhuǎn)的URL地址 * @param mixed $data 返回的數(shù)據(jù) * @param integer $wait 跳轉(zhuǎn)等待時(shí)間 * @param array $header 發(fā)送的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); }
看完上述內(nèi)容,你們對怎么在thinkphp6.0中實(shí)現(xiàn)success、error有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。