中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在thinkphp6.0中實現success、error

發布時間:2021-05-31 17:13:57 來源:億速云 閱讀:338 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關怎么在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有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

屏山县| 余江县| 专栏| 资讯| 宜章县| 新野县| 柏乡县| 巴彦淖尔市| 盐津县| 桂阳县| 竹山县| 沐川县| 夹江县| 博客| 临潭县| 渝北区| 宜良县| 闻喜县| 阿图什市| 鱼台县| 咸阳市| 榆林市| 贞丰县| 拜城县| 栖霞市| 商水县| 石景山区| 康定县| 弋阳县| 闽清县| 隆德县| 富民县| 天津市| 东阿县| 甘洛县| 海原县| 婺源县| 韶山市| 安宁市| 碌曲县| 兴海县|