config.js 855 B

1234567891011121314151617181920212223242526
  1. // http 请求配置项
  2. export default {
  3. // 开发者服务器接口地址
  4. url:'https://www.vgst168.com',
  5. //http://vgq.vgst68.com
  6. // url:'/host',
  7. // 请求的参数
  8. data: {},
  9. // 设置请求的 header,header 中不能设置 Referer。
  10. header: {
  11. },
  12. // (需大写)有效值:OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
  13. method: "POST",
  14. // json 如果设为json,会尝试对返回的数据做一次 JSON.parse
  15. // dataType: "json",
  16. dataType:"json",
  17. // text 设置响应的数据类型。合法值:text、arraybuffer 1.7.0
  18. responseType: "text",
  19. // 收到开发者服务成功返回的回调函数
  20. success() {},
  21. // 接口调用失败的回调函数
  22. fail() {},
  23. // 接口调用结束的回调函数(调用成功、失败都会执行)
  24. complete() {},
  25. }