request.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /**
  2. * Request:请求封装
  3. * @property {Object} config = 私有属性,默认值
  4. * @property {Function} isUrl = 私有方法,url是否完整
  5. * @property {Function} requestBefore = 私有方法,请求前
  6. * @property {Function} requestAfter = 私有方法,请求后
  7. */
  8. import {
  9. API_URL
  10. } from '@/env'
  11. import platform from '@/shopro/platform/index';
  12. export default class Request {
  13. constructor() {
  14. // 默认配置
  15. this.config = {
  16. baseUrl: API_URL,
  17. header: {
  18. 'content-type': 'application/json',
  19. 'platform': platform.get()
  20. },
  21. url: '',
  22. data: {},
  23. params: {},
  24. method: 'GET',
  25. dataType: 'json',
  26. // #ifndef MP-ALIPAY || APP-PLUS
  27. responseType: 'text',
  28. // #endif
  29. custom: {},
  30. // #ifdef APP-PLUS
  31. sslVerify: false
  32. // #endif
  33. }
  34. /* 拦截器 */
  35. this.interceptor = {
  36. request: cb => {
  37. if (cb) {
  38. this.requestBefore = cb
  39. } else {
  40. this.requestBefore = request => request
  41. }
  42. },
  43. response: (cb) => {
  44. if (cb) {
  45. this.requestAfter = cb
  46. } else {
  47. this.requestAfter = response => response
  48. }
  49. }
  50. }
  51. }
  52. /* 判断url是否完整 */
  53. static isUrl(url) {
  54. return /(http|https):\/\/([\w.]+\/?)\S*/.test(url)
  55. }
  56. static addQueryString(params) {
  57. let paramsData = ''
  58. Object.keys(params).forEach(key => {
  59. paramsData += key + '=' + encodeURIComponent(params[key]) + '&'
  60. })
  61. return paramsData.substring(0, paramsData.length - 1)
  62. }
  63. /* 请求前 */
  64. static requestBefore(config) {
  65. return config
  66. }
  67. /* 请求后 */
  68. static requestAfter(response) {
  69. return response
  70. }
  71. /*设置全局配置*/
  72. setConfig(func) {
  73. return func(this.config)
  74. }
  75. /**
  76. * @Function
  77. * @param {Object} options - 请求配置项
  78. * @prop {String} options.url - 请求路径
  79. * @prop {Object} options.data - 请求参数
  80. * @prop {Object} [options.responseType = config.responseType] [text|arraybuffer] - 响应的数据类型
  81. * @prop {Object} [options.dataType = config.dataType] - 如果设为 json,会尝试对返回的数据做一次 JSON.parse
  82. * @prop {Object} [options.header = config.header] - 请求header
  83. * @prop {Object} [options.method = config.method] - 请求方法
  84. * @returns {Promise<unknown>}
  85. */
  86. async request(options = {}) {
  87. options = {
  88. ...options,
  89. ...this.config,
  90. ...this.requestBefore(options)
  91. }
  92. return new Promise((resolve, reject) => {
  93. let mergeUrl = Request.isUrl(options.url) ? options.url : (options.baseUrl + options.url)
  94. if (JSON.stringify(options.params) !== '{}') {
  95. let query = Request.addQueryString(options.params);
  96. mergeUrl += mergeUrl.indexOf('?') === -1 ? `?${query}` : `&${query}`
  97. }
  98. options.url = mergeUrl
  99. options.success = res => {
  100. resolve(this.requestAfter(res.data))
  101. }
  102. options.fail = err => {
  103. reject(this.requestAfter(err))
  104. }
  105. uni.request(options)
  106. })
  107. }
  108. get(url, options = {}) {
  109. return this.request({
  110. url,
  111. method: 'GET',
  112. ...options
  113. })
  114. }
  115. post(url, data, options = {}) {
  116. return this.request({
  117. url,
  118. data,
  119. method: 'POST',
  120. ...options
  121. })
  122. }
  123. }