config.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import {
  2. devUrl,
  3. prodUrl,
  4. contentType
  5. } from '@/common/setting'
  6. var options = {
  7. baseURL: process.env.NODE_ENV === 'development' ? devUrl : prodUrl,
  8. header: {
  9. 'Content-Type': contentType
  10. },
  11. method: 'POST',
  12. dataType: 'json',
  13. // #ifndef MP-ALIPAY || APP-PLUS
  14. responseType: 'text',
  15. // #endif
  16. // 注:如果局部custom与全局custom有同名属性,则后面的属性会覆盖前面的属性,相当于Object.assign(全局,局部)
  17. custom: {}, // 全局自定义参数默认值
  18. // #ifdef MP-ALIPAY || MP-WEIXIN
  19. timeout: 30000,
  20. // #endif
  21. // #ifdef APP-PLUS
  22. sslVerify: true,
  23. // #endif
  24. // #ifdef H5
  25. // 跨域请求时是否携带凭证(cookies)仅H5支持(HBuilderX 2.6.15+)
  26. //withCredentials: false,
  27. // #endif
  28. // #ifdef APP-PLUS
  29. firstIpv4: false, // DNS解析时优先使用ipv4 仅 App-Android 支持 (HBuilderX 2.8.0+)
  30. // #endif
  31. // 局部优先级高于全局,返回当前请求的task,options。请勿在此处修改options。非必填
  32. // getTask: (task, options) => {
  33. // 相当于设置了请求超时时间500ms
  34. // setTimeout(() => {
  35. // task.abort()
  36. // }, 500)
  37. // },
  38. // 全局自定义验证器。参数为statusCode 且必存在,不用判断空情况。
  39. // validateStatus: (statusCode) => { // statusCode 必存在。此处示例为全局默认配置
  40. // return statusCode >= 200 && statusCode < 300
  41. // }
  42. };
  43. export { options };