Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Jump.php 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. /**
  3. * 用法:
  4. * load_trait('controller/Jump');
  5. * class index
  6. * {
  7. * use \traits\controller\Jump;
  8. * public function index(){
  9. * $this->error();
  10. * $this->redirect();
  11. * }
  12. * }
  13. */
  14. namespace traits\controller;
  15. use think\Config;
  16. use think\exception\HttpResponseException;
  17. use think\Request;
  18. use think\Response;
  19. use think\response\Redirect;
  20. use think\Url;
  21. use think\View as ViewTemplate;
  22. trait Jump
  23. {
  24. /**
  25. * 操作成功跳转的快捷方法
  26. * @access protected
  27. * @param mixed $msg 提示信息
  28. * @param string $url 跳转的 URL 地址
  29. * @param mixed $data 返回的数据
  30. * @param int $wait 跳转等待时间
  31. * @param array $header 发送的 Header 信息
  32. * @param string $target 窗口打开方式
  33. * @return void
  34. * @throws HttpResponseException
  35. */
  36. protected function success($msg = '', $url = null, $data = '', $wait = 1, array $header = [], $target = '_self')
  37. {
  38. if (is_null($url) && !is_null(Request::instance()->server('HTTP_REFERER'))) {
  39. $url = Request::instance()->server('HTTP_REFERER');
  40. } elseif ('' !== $url && !strpos($url, '://') && 0 !== strpos($url, '/')) {
  41. $url = Url::build($url);
  42. }
  43. $type = $this->getResponseType();
  44. $result = [
  45. 'code' => 1,
  46. 'msg' => $msg,
  47. 'data' => $data,
  48. 'url' => $url,
  49. 'wait' => $wait,
  50. 'target' => $target,
  51. ];
  52. if ('html' == strtolower($type)) {
  53. $template = Config::get('template');
  54. $view = Config::get('view_replace_str');
  55. $result = ViewTemplate::instance($template, $view)
  56. ->fetch(Config::get('dispatch_success_tmpl'), $result);
  57. }
  58. $response = Response::create($result, $type)->header($header);
  59. throw new HttpResponseException($response);
  60. }
  61. /**
  62. * 操作错误跳转的快捷方法
  63. * @access protected
  64. * @param mixed $msg 提示信息
  65. * @param string $url 跳转的 URL 地址
  66. * @param mixed $data 返回的数据
  67. * @param int $wait 跳转等待时间
  68. * @param array $header 发送的 Header 信息
  69. * @param string $target 窗口打开方式
  70. * @return void
  71. * @throws HttpResponseException
  72. */
  73. protected function error($msg = '', $url = null, $data = '', $wait = 5, array $header = [], $target = '_self')
  74. {
  75. if (is_null($url)) {
  76. $url = Request::instance()->isAjax() ? '' : 'javascript:history.back(-1);';
  77. } elseif ('' !== $url && !strpos($url, '://') && 0 !== strpos($url, '/')) {
  78. $url = Url::build($url);
  79. }
  80. $type = $this->getResponseType();
  81. $result = [
  82. 'code' => 0,
  83. 'msg' => $msg,
  84. 'data' => $data,
  85. 'url' => $url,
  86. 'wait' => $wait,
  87. 'target' => $target,
  88. ];
  89. if ('html' == strtolower($type)) {
  90. $template = Config::get('template');
  91. $view = Config::get('view_replace_str');
  92. $result = ViewTemplate::instance($template, $view)
  93. ->fetch(Config::get('dispatch_error_tmpl'), $result);
  94. }
  95. $response = Response::create($result, $type)->header($header);
  96. throw new HttpResponseException($response);
  97. }
  98. /**
  99. * 返回封装后的 API 数据到客户端
  100. * @access protected
  101. * @param mixed $data 要返回的数据
  102. * @param int $code 返回的 code
  103. * @param mixed $msg 提示信息
  104. * @param string $type 返回数据格式
  105. * @param array $header 发送的 Header 信息
  106. * @return void
  107. * @throws HttpResponseException
  108. */
  109. protected function result($data, $code = 0, $msg = '', $type = '', array $header = [])
  110. {
  111. $result = [
  112. 'code' => $code,
  113. 'msg' => $msg,
  114. 'time' => Request::instance()->server('REQUEST_TIME'),
  115. 'data' => $data,
  116. ];
  117. $type = $type ?: $this->getResponseType();
  118. $response = Response::create($result, $type)->header($header);
  119. throw new HttpResponseException($response);
  120. }
  121. /**
  122. * URL 重定向
  123. * @access protected
  124. * @param string $url 跳转的 URL 表达式
  125. * @param array|int $params 其它 URL 参数
  126. * @param int $code http code
  127. * @param array $with 隐式传参
  128. * @return void
  129. * @throws HttpResponseException
  130. */
  131. protected function redirect($url, $params = [], $code = 302, $with = [])
  132. {
  133. if (is_integer($params)) {
  134. $code = $params;
  135. $params = [];
  136. }
  137. $response = new Redirect($url);
  138. $response->code($code)->params($params)->with($with);
  139. throw new HttpResponseException($response);
  140. }
  141. /**
  142. * 获取当前的 response 输出类型
  143. * @access protected
  144. * @return string
  145. */
  146. protected function getResponseType()
  147. {
  148. return Request::instance()->isAjax()
  149. ? Config::get('default_ajax_return')
  150. : Config::get('default_return_type');
  151. }
  152. }