http.js 2.1 KB

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