defaults.js 557 B

12345678910111213141516171819202122232425262728293031
  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-ALIPAY || MP-WEIXIN
  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. }