http.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // 全局请求路径,也就是后端的请求基准路径
  2. export const BASE_URL = 'https://banmayouxi.oss-cn-beijing.aliyuncs.com'//正式
  3. export const BASE_URL1 = 'http://banma8188.com'//正式
  4. // 同时发送异步代码的次数,防止一次点击中有多次请求,用于处理
  5. let ajaxTimes=0;
  6. // 封装请求方法,并向外暴露该方法
  7. export const request = (options)=>{
  8. // 解构请求头参数
  9. let header = {...options.header};
  10. // 当前请求不是登录时请求,在header中加上后端返回的token
  11. if(options.url != '/api/login'&&options.url!='/api/user/add'&&options.url!='/api/getService'&&options.url!='/api/getPrivacy'){
  12. header["Authorization"] = uni.getStorageSync('token');
  13. }
  14. ajaxTimes++;
  15. // 显示加载中 效果
  16. // uni.showLoading({
  17. // title: "加载中",
  18. // });
  19. return new Promise((resolve,reject)=>{
  20. uni.request({
  21. url:BASE_URL1+options.url,
  22. method: options.method || 'GET',
  23. data: options.data || {},
  24. header,
  25. success: (res)=>{
  26. if(options.url=="/api/index/getGoodsDetail"){
  27. resolve(res.data);
  28. return
  29. }
  30. if(res.data.code!==0){
  31. // uni.hideLoading();
  32. resolve(res.data);
  33. }else{
  34. if(res.data.code==401||res.data.code==402){
  35. uni.hideLoading();
  36. uni.setStorageSync('token','')
  37. uni.navigateTo({
  38. url:'/pages/login/login'
  39. })
  40. }else{
  41. if(options.url=='/api/index/getGoodsList'){
  42. resolve(res.data);
  43. }else{
  44. uni.showToast({
  45. title:res.data.msg,
  46. icon:'none'
  47. })
  48. }
  49. }
  50. }
  51. },
  52. fail: (err)=>{
  53. reject(err);
  54. uni.hideLoading();
  55. },
  56. // 完成之后关闭加载效果
  57. complete:()=>{
  58. ajaxTimes--;
  59. if(ajaxTimes===0){
  60. // 关闭正在等待的图标
  61. uni.hideLoading();
  62. }
  63. }
  64. })
  65. })
  66. }