request.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. const baseUrl = 'https://www.szdeao.com' //请求接口地址
  2. let isJson=true
  3. const httpRequest = (url, method, data,isJson) => {
  4. let meth = method.toUpperCase();//小写改为大写
  5. if (!data) {
  6. data = {}
  7. }
  8. if(getApp().globalData.token){
  9. data['token'] = getApp().globalData.token; //token
  10. }
  11. //
  12. let httpDefaultOpts = {
  13. url: baseUrl + url,
  14. data: data,
  15. method: meth,
  16. header:{
  17. 'X-Requested-With': 'XMLHttpRequest',
  18. 'content-type': isJson==false ? 'application/x-www-form-urlencoded;charset=UTF-8' : 'application/json',//判断需要json格式还是formData格式传参
  19. // 'content-type': 'application/json',
  20. },
  21. dataType: 'json',
  22. }
  23. return new Promise(function(resolve, reject) {
  24. uni.request(httpDefaultOpts).then(
  25. (res) => {
  26. console.log(res)
  27. // if(res[1].data.code == 0){//成功返回
  28. // resolve(res[1].data)
  29. // }else{//错误信息
  30. // uni.showToast({
  31. // title:res[1].data.msg,
  32. // icon:'none'
  33. // })
  34. // //resolve(res[1]) //错误信息返不返回 看个人情况
  35. // }
  36. resolve(res[1].data)
  37. }
  38. ).catch((response) => {
  39. reject(response)
  40. }
  41. )
  42. })
  43. };
  44. export default {
  45. baseUrl,
  46. httpRequest
  47. }