interface.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // import { BaseApi } from './baseApi'
  2. export default {
  3. config: {
  4. baseUrl: process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API,
  5. header: {
  6. 'Content-Type': 'application/json;charset=UTF-8',
  7. 'Content-Type': 'application/x-www-form-urlencoded'
  8. },
  9. data: {},
  10. method: 'GET',
  11. dataType: 'json' /* 如设为json,会对返回的数据做一次 JSON.parse */,
  12. responseType: 'text',
  13. success() {},
  14. fail() {},
  15. complete() {}
  16. },
  17. interceptor: {
  18. request: null,
  19. response: null
  20. },
  21. request(options) {
  22. if (!options) {
  23. options = {}
  24. }
  25. options.baseUrl = options.baseUrl || this.config.baseUrl
  26. options.dataType = options.dataType || this.config.dataType
  27. options.url = options.baseUrl + options.url
  28. options.data = options.data || {}
  29. options.method = options.method || this.config.method
  30. return new Promise(async (resolve, reject) => {
  31. let _config = null
  32. options.complete = response => {
  33. let statusCode = response.statusCode
  34. response.config = _config
  35. if (process.env.NODE_ENV === 'development') {
  36. if (statusCode === 200) {
  37. ////console.log("【" + _config.requestId + "】 结果:" + JSON.stringify(response.data))
  38. }
  39. }
  40. if (this.interceptor.response) {
  41. let newResponse = this.interceptor.response(response)
  42. if (newResponse) {
  43. response = newResponse
  44. }
  45. }
  46. // 统一的响应日志记录
  47. //_reslog(response)
  48. if (statusCode === 200) {
  49. //成功
  50. resolve(response)
  51. } else {
  52. reject(response)
  53. }
  54. }
  55. _config = Object.assign({}, this.config, options)
  56. _config.requestId = new Date().getTime()
  57. if (this.interceptor.request) {
  58. await this.interceptor.request(_config)
  59. }
  60. // 统一的请求日志记录
  61. //_reqlog(_config)
  62. if (process.env.NODE_ENV === 'development') {
  63. //console.log("【" + _config.requestId + "】 地址:" + _config.url)
  64. if (_config.data) {
  65. //console.log("【" + _config.requestId + "】 参数:" + JSON.stringify(_config.data))
  66. }
  67. }
  68. uni.request(_config)
  69. })
  70. }
  71. }
  72. /**
  73. * 请求接口日志记录
  74. */
  75. function _reqlog(req) {
  76. if (process.env.NODE_ENV === 'development') {
  77. //console.log("【" + req.requestId + "】 地址:" + req.url)
  78. if (req.data) {
  79. //console.log("【" + req.requestId + "】 请求参数:" + JSON.stringify(req.data))
  80. }
  81. }
  82. //TODO 调接口异步写入日志数据库
  83. }
  84. /**
  85. * 响应接口日志记录
  86. */
  87. function _reslog(res) {
  88. let _statusCode = res.statusCode
  89. if (process.env.NODE_ENV === 'development') {
  90. //console.log("【" + res.config.requestId + "】 地址:" + res.config.url)
  91. if (res.config.data) {
  92. //console.log("【" + res.config.requestId + "】 请求参数:" + JSON.stringify(res.config.data))
  93. }
  94. //console.log("【" + res.config.requestId + "】 响应结果:" + JSON.stringify(res))
  95. }
  96. //TODO 除了接口服务错误外,其他日志调接口异步写入日志数据库
  97. switch (_statusCode) {
  98. case 200:
  99. break
  100. case 401:
  101. break
  102. case 404:
  103. break
  104. default:
  105. break
  106. }
  107. }