index.ts 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import * as qs from 'qs'
  2. import type { WdRequestOptions, WdRequestConstructorConfig, WdUploadFileOptions } from './type'
  3. class WdRequest {
  4. config: WdRequestConstructorConfig
  5. url?: string
  6. constructor(config: WdRequestConstructorConfig) {
  7. this.config = config
  8. }
  9. private _fetchUrl(url: string) {
  10. if (url.includes('http')) {
  11. this.url = url
  12. } else {
  13. this.url = this.config.baseUrl + url
  14. }
  15. return this.url
  16. }
  17. request<T = any>(config: WdRequestOptions) {
  18. return new Promise<T>((resolve, reject) => {
  19. config.url = this._fetchUrl(config.url)
  20. // 解析query方法
  21. if (config.query) {
  22. const queryStr = qs.stringify(config.query)
  23. if (config.url.includes('?')) {
  24. config.url += `&${queryStr}`
  25. } else {
  26. config.url += `?${queryStr}`
  27. }
  28. }
  29. // 实现全局请求拦截
  30. if (this.config?.interceptor?.requestSuccessFn) {
  31. config = this.config.interceptor.requestSuccessFn(config)
  32. }
  33. // 实现局部请求拦截
  34. if (config.interceptor?.requestSuccessFn) {
  35. config = config.interceptor.requestSuccessFn(config)
  36. }
  37. uni.request({
  38. timeout: this.config.timeout, // 延迟时间
  39. dataType: 'json',
  40. responseType: 'json',
  41. url: config.url as string,
  42. ...config,
  43. success: (res: any) => {
  44. // 有可能在执行的过程出现异常后抛出异常
  45. try {
  46. // 实现全局响应拦截
  47. if (this.config?.interceptor?.responseSuccessFn) {
  48. res = this.config.interceptor.responseSuccessFn(res)
  49. }
  50. // 实现局部响应拦截
  51. if (config?.interceptor?.responseSuccessFn) {
  52. res = config.interceptor.responseSuccessFn(res)
  53. }
  54. resolve(res)
  55. } catch (error) {
  56. reject(error)
  57. }
  58. },
  59. fail: (error) => {
  60. if (this.config?.interceptor?.responseErrorFn) {
  61. error = this.config.interceptor.responseErrorFn(error)
  62. }
  63. if (config?.interceptor?.responseErrorFn) {
  64. error = config?.interceptor?.responseErrorFn(error)
  65. }
  66. reject(error)
  67. },
  68. })
  69. })
  70. }
  71. get<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
  72. return this.request<T>({
  73. url,
  74. method: 'GET',
  75. data,
  76. ...config,
  77. })
  78. }
  79. post<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
  80. return this.request<T>({
  81. url,
  82. method: 'POST',
  83. data,
  84. ...config,
  85. })
  86. }
  87. put<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
  88. return this.request<T>({
  89. url,
  90. method: 'POST',
  91. data,
  92. ...config,
  93. })
  94. }
  95. delete<T = any>(url: string, data?: WdRequestOptions['data'], config?: WdRequestOptions) {
  96. return this.request<T>({
  97. url,
  98. method: 'DELETE',
  99. data,
  100. ...config,
  101. })
  102. }
  103. // 文件上传
  104. uploadFile<T = any>(config: WdUploadFileOptions) {
  105. return new Promise<T>((resolve, reject) => {
  106. // 实现全局请求拦截
  107. if (this.config?.interceptor?.requestSuccessFn) {
  108. config = this.config.interceptor.requestSuccessFn(config)
  109. }
  110. // 实现局部请求拦截
  111. if (config.interceptor?.requestSuccessFn) {
  112. config = config.interceptor.requestSuccessFn(config)
  113. }
  114. uni.uploadFile({
  115. ...config,
  116. success: (res: any) => {
  117. // 实现全局响应拦截
  118. if (this.config?.interceptor?.responseSuccessFn) {
  119. res = this.config.interceptor.responseSuccessFn(res)
  120. }
  121. // 实现局部响应拦截
  122. if (config?.interceptor?.responseSuccessFn) {
  123. res = config.interceptor.responseSuccessFn(res)
  124. }
  125. resolve(res)
  126. },
  127. fail: (error) => {
  128. reject(error)
  129. },
  130. })
  131. })
  132. }
  133. }
  134. export default WdRequest