91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么在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

平邑县| 滨海县| 小金县| 永城市| 岑巩县| 崇州市| 梅河口市| 邵东县| 孙吴县| 新和县| 莱西市| 隆子县| 扎鲁特旗| 三亚市| 长春市| 横峰县| 大足县| 昌宁县| 同心县| 图木舒克市| 高邮市| 永春县| 江西省| 建昌县| 永济市| 马边| 和田市| 灌阳县| 新建县| 河间市| 白水县| 芜湖市| 塔城市| 当阳市| 伽师县| 郑州市| 中宁县| 祁门县| 南充市| 天津市| 沂南县|