亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

陇南市| 新密市| 松滋市| 新昌县| 新泰市| 磴口县| 堆龙德庆县| 延川县| 商城县| 通化市| 富蕴县| 清流县| 皋兰县| 三门峡市| 岳普湖县| 濉溪县| 灵川县| 墨脱县| 岱山县| 长兴县| 东海县| 白山市| 绥化市| 天长市| 武川县| 扶余县| 根河市| 军事| 读书| 神农架林区| 马尔康县| 平远县| 湘潭市| 灌南县| 偏关县| 怀柔区| 河源市| 牙克石市| 周至县| 福鼎市| 崇左市|