request.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //请求头
  2. import { baseUrl } from '@/https/url.js'
  3. export default(url, method, params) => { // 传参: 接口url, method类型, params参数
  4. const header = {
  5. 'accept':'application/json, text/plain, */*',
  6. 'Content-type': 'application/json',
  7. 'Authorization':uni.getStorageSync('token')?uni.getStorageSync('token'):"",
  8. }
  9. return new Promise((resolve, reject) => {
  10. uni.request({
  11. method: method,
  12. url: baseUrl + url,
  13. data: method=='GET'?params:JSON.stringify(params),
  14. header: header
  15. })
  16. .then((response) => {
  17. // 请求成功后的处理
  18. if(response[1].data.code==201){
  19. uni.removeStorageSync('token');
  20. uni.showToast({
  21. title: '登录失效,请刷新界面.',
  22. duration: 2000,
  23. icon: 'none'
  24. });
  25. }else if(response[1].data.code==0){
  26. if(response[1].data.message == 'token不能为空'){
  27. uni.removeStorageSync('token');
  28. uni.showToast({
  29. title: '登录失效,请刷新界面.',
  30. duration: 2000,
  31. icon: 'none'
  32. });
  33. uni.reLaunch({
  34. url: '/pages/login/login'
  35. });
  36. }
  37. }
  38. resolve(response[1])
  39. // if(response[1].)
  40. }).catch((reject) => {
  41. // 请求失败后的处理
  42. console.log('请求失败')
  43. reject(reject)
  44. })
  45. })
  46. }