request.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /**
  2. * 封装的异步请求处理函数
  3. * 使用方法为:
  4. * request('接口名称',{key:value},'请求方式(默认为GET)')
  5. * .then(res=>{console.log(res)})
  6. */
  7. import {
  8. getToken,
  9. removeToken
  10. } from "./auth";
  11. // let baseUrl = 'https://pet.hdlkeji.com/api';
  12. let baseUrl = 'https://ldc365.cn/api';
  13. async function request(mehtod, params, type, callBack) {
  14. //创建一个名为request请求的方法函数
  15. if (!type) {
  16. type = 'GET';
  17. }
  18. let header = {
  19. //设置请求头信息
  20. 'token': getToken(),
  21. 'X-Requested-With': 'XMLHttpRequest',
  22. "Accept": "application/json",
  23. "Content-Type": "application/json; charset=UTF-8"
  24. };
  25. let http = {
  26. url: baseUrl + mehtod,
  27. data: params,
  28. method: type,
  29. header: header
  30. };
  31. let promise = new Promise((resolve, reject) => {
  32. uni.request(http).then(res => {
  33. console.log(res)
  34. let newdata = res[1].data; // if (newdata.code == 403) {
  35. if (newdata.code === 401) {
  36. uni.showModal({
  37. title: "提示",
  38. content: "登录身份已过期,请重新登录。",
  39. showCancel: false,
  40. success() {
  41. uni.navigateTo({
  42. url: '/pages/login/login'
  43. })
  44. }
  45. })
  46. }
  47. if (res[1].data.code == 0) {
  48. //如果错误码为 -1 提示
  49. uni.showToast({
  50. title: res[1].data.msg,
  51. icon: 'none'
  52. });
  53. if (res[1].data.msg == "请先登录") {
  54. setTimeout(function() {
  55. uni.redirectTo({
  56. url: '/pages/login/login'
  57. })
  58. }, 0)
  59. }
  60. return
  61. }
  62. resolve(res[1].data);
  63. }).catch(err => {
  64. reject(err);
  65. console.log(err);
  66. });
  67. });
  68. return promise;
  69. }
  70. export default {
  71. request,
  72. baseUrl
  73. };