defaults.js 653 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * 默认的全局配置
  3. */
  4. export default {
  5. baseURL: '',
  6. header: {},
  7. method: 'GET',
  8. dataType: 'json',
  9. paramsSerializer: null,
  10. // #ifndef MP-ALIPAY
  11. responseType: 'text',
  12. // #endif
  13. custom: {},
  14. // #ifdef H5 || APP-PLUS || MP-WEIXIN || MP-ALIPAY || MP-TOUTIAO || MP-KUAISHOU
  15. timeout: 60000,
  16. // #endif
  17. // #ifdef APP-PLUS
  18. sslVerify: true,
  19. // #endif
  20. // #ifdef H5
  21. withCredentials: false,
  22. // #endif
  23. // #ifdef APP-PLUS
  24. firstIpv4: false,
  25. // #endif
  26. validateStatus: function validateStatus(status) {
  27. return status >= 200 && status < 300
  28. },
  29. // 是否尝试将响应数据json化
  30. forcedJSONParsing: true
  31. }