httpAli.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. var common = require('./common.js');
  2. var storage = require('./storage.js');
  3. var config = require('./config.js'); // 检查token是否失效 如失效 清除缓存 提示重新登录
  4. // 402: 解析token出错 403: token格式错误 404: 公共声明中缺少必要字段 405: token验证失败
  5. function _checkTokenValid(res) {
  6. if (
  7. res.data.code === 402 ||
  8. res.data.code === 403 ||
  9. res.data.code === 404 ||
  10. res.data.code === 405 ||
  11. res.data.code === 300 ||
  12. res.data.code === 302 ||
  13. res.data.code === 303 ||
  14. res.data.code === 304 ||
  15. res.data.code === 305 ||
  16. res.data.code === 306
  17. ) {
  18. //wx.clearStorageSync();
  19. var shareCode = storage.getShareCode();
  20. storage.clearStorage();
  21. storage.setShareCode(shareCode);
  22. uni.reLaunch({
  23. url: '/pages/index/index'
  24. }); //wx.switchTab({url:'/pages/index/index'})
  25. // wx.navigateTo({
  26. // url: '/pages/login/login',
  27. // })
  28. // wx.showModal({
  29. // title: '错误',
  30. // content: '鉴权认证过期,请重新登录',
  31. // showCancel: false
  32. // })
  33. return false;
  34. }
  35. return true;
  36. }
  37. function getRequest(url, data, successCallBack, failCallBack) {
  38. if (!failCallBack) failCallBack = function() {};
  39. if (url.indexOf('?') > 0) {
  40. url = url + '&' + common.obj2UrlQuery(data);
  41. } else {
  42. url = '?' + common.obj2UrlQuery(data);
  43. }
  44. uni.request({
  45. url: url,
  46. method: 'GET',
  47. header: {
  48. 'User-Agent':'Ali'
  49. },
  50. success: function(res) {
  51. uni.hideLoading();
  52. if (_checkTokenValid(res)) {
  53. successCallBack(res);
  54. }
  55. },
  56. fail: function(res) {
  57. uni.hideLoading();
  58. if (!(res.errMsg.indexOf('interrupted') != -1)) {
  59. uni.showModal({
  60. title: '错误',
  61. content: '网络错误' + res.errMsg,
  62. showCancel: false
  63. });
  64. }
  65. if (failCallBack) failCallBack(res);
  66. }
  67. });
  68. }
  69. function postRequest(url, data, successCallBack, failCallBack) {
  70. if (!failCallBack) failCallBack = function() {};
  71. uni.request({
  72. url: url,
  73. data: data,
  74. header: {
  75. 'content-type': 'application/x-www-form-urlencoded',
  76. 'User-Agent':'Ali'
  77. },
  78. method: 'POST',
  79. success: function(res) {
  80. //wx.hideLoading();
  81. if (_checkTokenValid(res)) {
  82. successCallBack(res);
  83. }
  84. },
  85. fail: function(res) {
  86. uni.hideLoading();
  87. if (!(res.errMsg.indexOf('interrupted') != -1)) {
  88. uni.showModal({
  89. title: '错误',
  90. content: '网络错误' + res.errMsg,
  91. showCancel: false
  92. });
  93. }
  94. failCallBack(res);
  95. }
  96. });
  97. }
  98. function getApi(url, data, successCallBack, failCallBack) {
  99. var token = storage.getUserToken(); //wx.getStorageSync(config.STORAGE_USER_TOKEN)
  100. data.token = token;
  101. data.v = config.APP_VERSION;
  102. //#ifdef MP-ALIPAY
  103. data.from = 'ali'
  104. //#endif
  105. getRequest(url, data, successCallBack, failCallBack);
  106. }
  107. function postApi(url, data, successCallBack, failCallBack) {
  108. var token = storage.getUserToken(); // wx.getStorageSync(config.STORAGE_USER_TOKEN)
  109. data.token = token;
  110. data.v = config.APP_VERSION;
  111. //#ifdef MP-ALIPAY
  112. data.from = 'ali'
  113. //#endif
  114. postRequest(url, data, successCallBack, failCallBack);
  115. }
  116. /**
  117. * 上报formid
  118. */
  119. function reportFormId(formId) {
  120. const accountInfo = uni.getAccountInfoSync();
  121. var postData = {
  122. formId: formId,
  123. appid: accountInfo.miniProgram.appId
  124. };
  125. postApi(config.API_FORMID_REPORT, postData, function() {});
  126. }
  127. function getAppConfig() {
  128. //const accountInfo = uni.getAccountInfoSync();
  129. var appId = uni.getAccountInfoSync().miniProgram.appId;
  130. const pData = {
  131. appid: appId,
  132. terminal: 'wx_app'
  133. };
  134. getApi(config.API_INDEX_APP_CONFIG, pData, function(resp) {
  135. if (resp.data.code === 200) {
  136. const appConfig = resp.data.data.appConfig;
  137. storage.setAppConfig(appConfig);
  138. uni.setNavigationBarTitle({
  139. title: appConfig.app_name
  140. });
  141. }
  142. });
  143. }
  144. module.exports = {
  145. getRequest: getRequest,
  146. postRequest: postRequest,
  147. getApi: getApi,
  148. postApi: postApi,
  149. reportFormId: reportFormId,
  150. getAppConfig: getAppConfig
  151. };