http.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. var common = require('./common.js');
  2. var storage = require('./storage.js');
  3. var config = require('./config.js');
  4. var helpConfig = require('./help_config.js');
  5. // 检查token是否失效 如失效 清除缓存 提示重新登录
  6. // 402: 解析token出错 403: token格式错误 404: 公共声明中缺少必要字段 405: token验证失败
  7. function _checkTokenValid(res) {
  8. if (
  9. res.data.code === 402 ||
  10. res.data.code === 403 ||
  11. res.data.code === 404 ||
  12. res.data.code === 405 ||
  13. res.data.code === 300 ||
  14. res.data.code === 302 ||
  15. res.data.code === 303 ||
  16. res.data.code === 304 ||
  17. res.data.code === 305 ||
  18. res.data.code === 306
  19. ) {
  20. uni.clearStorageSync();
  21. uni.reLaunch({
  22. url: '/pages/login/login'
  23. });
  24. return false;
  25. }
  26. return true;
  27. }
  28. function getRequest(url, data, successCallBack, failCallBack) {
  29. if (!failCallBack) {
  30. failCallBack = function () {};
  31. }
  32. if (url.indexOf('?') > 0) {
  33. url = url + '&' + common.obj2UrlQuery(data);
  34. } else {
  35. url = '?' + common.obj2UrlQuery(data);
  36. }
  37. uni.request({
  38. url: url + '?token=' + storage.getApiToken(),
  39. method: 'GET',
  40. success: function (res) {
  41. uni.hideLoading();
  42. if (_checkTokenValid(res)) {
  43. successCallBack(res);
  44. }
  45. },
  46. fail: function (res) {
  47. uni.hideLoading();
  48. uni.showModal({
  49. title: '错误',
  50. content: '网络错误',
  51. showCancel: false
  52. });
  53. if (failCallBack) {
  54. failCallBack(res);
  55. }
  56. }
  57. });
  58. }
  59. function getHelpRequest(url, data, successCallBack, failCallBack) {
  60. if (!failCallBack) {
  61. failCallBack = function () {};
  62. }
  63. if (url.indexOf('?') > 0) {
  64. url = url + '&' + common.obj2UrlQuery(data);
  65. } else {
  66. url = '?' + common.obj2UrlQuery(data);
  67. }
  68. uni.request({
  69. url: url + '&token=' + storage.getApiToken(),
  70. method: 'GET',
  71. success: function (res) {
  72. uni.hideLoading();
  73. if (_checkTokenValid(res)) {
  74. successCallBack(res);
  75. }
  76. },
  77. fail: function (res) {
  78. uni.hideLoading();
  79. uni.showModal({
  80. title: '错误',
  81. content: '网络错误',
  82. showCancel: false
  83. });
  84. if (failCallBack) {
  85. failCallBack(res);
  86. }
  87. }
  88. });
  89. }
  90. function postRequest(url, data, successCallBack, failCallBack) {
  91. if (!failCallBack) {
  92. failCallBack = function () {};
  93. }
  94. if (url.indexOf('?') > 0) {
  95. if (storage.getApiToken() != '') {
  96. url = url + '&token=' + storage.getApiToken();
  97. }
  98. } else {
  99. console.log('nnnnn');
  100. if (storage.getApiToken() != '') {
  101. url = url + '?token=' + storage.getApiToken();
  102. }
  103. console.log(url);
  104. }
  105. uni.request({
  106. url: url,
  107. data: data,
  108. header: {
  109. 'content-type': 'application/json',
  110. 'X-Token': storage.getApiToken()
  111. },
  112. method: 'POST',
  113. success: function (res) {
  114. //wx.hideLoading();
  115. if (_checkTokenValid(res)) {
  116. successCallBack(res);
  117. }
  118. },
  119. fail: function (res) {
  120. uni.hideLoading();
  121. failCallBack(res);
  122. }
  123. });
  124. }
  125. function postHelpRequest(url, data, successCallBack, failCallBack) {
  126. if (!failCallBack) {
  127. failCallBack = function () {};
  128. }
  129. if (url.indexOf('?') > 0) {
  130. url = url + '&token=' + storage.getApiToken();
  131. } else {
  132. url = url + '?token=' + storage.getApiToken();
  133. }
  134. uni.request({
  135. url: url,
  136. data: data,
  137. header: {
  138. 'content-type': 'application/json'
  139. },
  140. method: 'POST',
  141. success: function (res) {
  142. //wx.hideLoading();
  143. if (_checkTokenValid(res)) {
  144. successCallBack(res);
  145. }
  146. },
  147. fail: function (res) {
  148. uni.hideLoading();
  149. failCallBack(res);
  150. }
  151. });
  152. }
  153. function getApi(url, data, successCallBack, failCallBack) {
  154. getRequest(url, data, successCallBack, failCallBack);
  155. }
  156. function postApi(url, data, successCallBack, failCallBack) {
  157. postRequest(url, data, successCallBack, failCallBack);
  158. }
  159. function getAppConfig(callback = () => {}) {
  160. console.log('getAppConfig ...');
  161. //const accountInfo = uni.getAccountInfoSync();
  162. const pData = {
  163. appid: "wxddbcc3709026525e",
  164. terminal: 'wx_app'
  165. };
  166. getApi(helpConfig.API_INDEX_APP_CONFIG, pData, function (resp) {
  167. if (resp.data.code === 200) {
  168. const appConfig = resp.data.data.appConfig;
  169. storage.setAppConfig(appConfig);
  170. // wx.setNavigationBarTitle({
  171. // title: appConfig.app_name,
  172. // })
  173. callback(appConfig);
  174. }
  175. });
  176. }
  177. /**
  178. * 上报formid
  179. */
  180. function reportFormId(formId) {
  181. //const accountInfo = uni.getAccountInfoSync();
  182. var postData = {
  183. formId: formId,
  184. appid: "wxddbcc3709026525e"
  185. };
  186. postApi(config.API_FORMID_REPORT, postData, function () {});
  187. }
  188. module.exports = {
  189. getAppConfig: getAppConfig,
  190. getRequest: getRequest,
  191. getHelpRequest: getHelpRequest,
  192. postHelpRequest: postHelpRequest,
  193. postRequest: postRequest,
  194. getApi: getApi,
  195. postApi: postApi,
  196. reportFormId: reportFormId
  197. };