request.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. async function request(mehtod, params, type, callBack) {
  13. //创建一个名为request请求的方法函数
  14. if (!type) {
  15. type = 'GET';
  16. }
  17. let header = {
  18. //设置请求头信息
  19. 'token': getToken(),
  20. 'X-Requested-With': 'XMLHttpRequest',
  21. "Accept": "application/json",
  22. "Content-Type": "application/json; charset=UTF-8"
  23. };
  24. let http = {
  25. url: baseUrl + mehtod,
  26. data: params,
  27. method: type,
  28. header: header
  29. };
  30. let promise = new Promise((resolve, reject) => {
  31. uni.request(http).then(res => {
  32. console.log(res)
  33. let newdata = res[1].data; // if (newdata.code == 403) {
  34. if (newdata.code === 401) {
  35. uni.showModal({
  36. title: "提示",
  37. content: "登录身份已过期,请重新登录。",
  38. showCancel: false,
  39. success() {
  40. uni.navigateTo({
  41. url: '/pages/login/login'
  42. })
  43. }
  44. })
  45. }
  46. if (res[1].data.code == 0) {
  47. //如果错误码为 -1 提示
  48. uni.showToast({
  49. title: res[1].data.msg,
  50. icon: 'none'
  51. });
  52. if (res[1].data.msg == "请先登录") {
  53. setTimeout(function() {
  54. uni.redirectTo({
  55. url: '/pages/login/login'
  56. })
  57. }, 0)
  58. }
  59. return
  60. }
  61. resolve(res[1].data);
  62. }).catch(err => {
  63. reject(err);
  64. console.log(err);
  65. });
  66. });
  67. return promise;
  68. }
  69. export default {
  70. request
  71. };