index.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. import deepMerge from "../function/deepMerge";
  2. import validate from "../function/test";
  3. import jsonlint from "./jsonlint";
  4. class Request {
  5. // 设置全局默认配置
  6. setConfig(customConfig) {
  7. // 深度合并对象,否则会造成对象深层属性丢失
  8. this.config = deepMerge(this.config, customConfig);
  9. }
  10. // 主要请求部分
  11. request(options = {}) {
  12. // 检查请求拦截
  13. if (this.interceptor.request && typeof this.interceptor.request === 'function') {
  14. let tmpConfig = {};
  15. let interceptorRequest = this.interceptor.request(options);
  16. if (interceptorRequest === false) {
  17. // 返回一个处于pending状态中的Promise,来取消原promise,避免进入then()回调
  18. return new Promise(()=>{});
  19. }
  20. this.options = interceptorRequest;
  21. }
  22. options.dataType = options.dataType || this.config.dataType;
  23. options.responseType = options.responseType || this.config.responseType;
  24. options.url = options.url || '';
  25. options.params = options.params || {};
  26. options.header = Object.assign({}, this.config.header, options.header);
  27. options.method = options.method || this.config.method;
  28. return new Promise((resolve, reject) => {
  29. options.complete = (response) => {
  30. if (typeof response.data === 'string') {
  31. try {
  32. response.data = { ...jsonlint.parse(response.data) };
  33. } catch (e) { /* Ignore */ }
  34. }
  35. // 请求返回后,隐藏loading(如果请求返回快的话,可能会没有loading)
  36. uni.hideLoading();
  37. // 清除定时器,如果请求回来了,就无需loading
  38. clearTimeout(this.config.timer);
  39. this.config.timer = null;
  40. // 判断用户对拦截返回数据的要求,如果originalData为true,返回所有的数据(response)到拦截器,否则只返回response.data
  41. if(this.config.originalData) {
  42. // 判断是否存在拦截器
  43. if (this.interceptor.response && typeof this.interceptor.response === 'function') {
  44. let resInterceptors = this.interceptor.response(response);
  45. // 如果拦截器不返回false,就将拦截器返回的内容给this.$u.post的then回调
  46. if (resInterceptors !== false) {
  47. resolve(resInterceptors);
  48. } else {
  49. // 如果拦截器返回false,意味着拦截器定义者认为返回有问题,直接接入catch回调
  50. reject(response);
  51. }
  52. } else {
  53. // 如果要求返回原始数据,就算没有拦截器,也返回最原始的数据
  54. resolve(response);
  55. }
  56. } else {
  57. if (response.statusCode == 200) {
  58. if (this.interceptor.response && typeof this.interceptor.response === 'function') {
  59. let resInterceptors = this.interceptor.response(response.data);
  60. if (resInterceptors !== false) {
  61. resolve(resInterceptors);
  62. } else {
  63. reject(response.data);
  64. }
  65. } else {
  66. // 如果不是返回原始数据(originalData=false),且没有拦截器的情况下,返回纯数据给then回调
  67. resolve(response.data);
  68. }
  69. } else {
  70. // 不返回原始数据的情况下,服务器状态码不为200,modal弹框提示
  71. // if(response.errMsg) {
  72. // uni.showModal({
  73. // title: response.errMsg
  74. // });
  75. // }
  76. reject(response)
  77. }
  78. }
  79. }
  80. // 判断用户传递的URL是否/开头,如果不是,加上/,这里使用了uView的test.js验证库的url()方法
  81. options.url = validate.url(options.url) ? options.url : (this.config.baseUrl + (options.url.indexOf('/') == 0 ?
  82. options.url : '/' + options.url));
  83. // 是否显示loading
  84. // 加一个是否已有timer定时器的判断,否则有两个同时请求的时候,后者会清除前者的定时器id
  85. // 而没有清除前者的定时器,导致前者超时,一直显示loading
  86. if(this.config.showLoading && !this.config.timer) {
  87. this.config.timer = setTimeout(() => {
  88. uni.showLoading({
  89. title: this.config.loadingText,
  90. mask: this.config.loadingMask
  91. })
  92. this.config.timer = null;
  93. }, this.config.loadingTime);
  94. }
  95. uni.request(options);
  96. })
  97. // .catch(res => {
  98. // // 如果返回reject(),不让其进入this.$u.post().then().catch()后面的catct()
  99. // // 因为很多人都会忘了写后面的catch(),导致报错捕获不到catch
  100. // return new Promise(()=>{});
  101. // })
  102. }
  103. constructor() {
  104. this.config = {
  105. baseUrl: '', // 请求的根域名
  106. // 默认的请求头
  107. header: {},
  108. method: 'POST',
  109. // 默认为json,返回后uni.request会对数据进行一次JSON.parse
  110. // 设置为string,采用jsonlint.parse格式化uni.request返回数据
  111. dataType: 'string',
  112. // 此参数无需处理,因为5+和支付宝小程序不支持,默认为text即可
  113. responseType: 'text',
  114. showLoading: true, // 是否显示请求中的loading
  115. loadingText: '请求中...',
  116. loadingTime: 800, // 在此时间内,请求还没回来的话,就显示加载中动画,单位ms
  117. timer: null, // 定时器
  118. originalData: false, // 是否在拦截器中返回服务端的原始数据,见文档说明
  119. loadingMask: true // 展示loading的时候,是否给一个透明的蒙层,防止触摸穿透
  120. }
  121. // 拦截器
  122. this.interceptor = {
  123. // 请求前的拦截
  124. request: null,
  125. // 请求后的拦截
  126. response: null
  127. }
  128. // get请求
  129. this.get = (url, data = {}, header = {}) => {
  130. return this.request({
  131. method: 'GET',
  132. url,
  133. header,
  134. data
  135. })
  136. }
  137. // post请求
  138. this.post = (url, data = {}, header = {}) => {
  139. return this.request({
  140. url,
  141. method: 'POST',
  142. header,
  143. data
  144. })
  145. }
  146. // put请求,不支持支付宝小程序(HX2.6.15)
  147. this.put = (url, data = {}, header = {}) => {
  148. return this.request({
  149. url,
  150. method: 'PUT',
  151. header,
  152. data
  153. })
  154. }
  155. // delete请求,不支持支付宝和头条小程序(HX2.6.15)
  156. this.delete = (url, data = {}, header = {}) => {
  157. return this.request({
  158. url,
  159. method: 'DELETE',
  160. header,
  161. data
  162. })
  163. }
  164. }
  165. }
  166. export default new Request