common_http.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. //var publish_version = false;
  2. //var jqAjax = $.ajax;
  3. //
  4. //if(publish_version) {
  5. // $.ajax = function(url, opt) {
  6. // var userAgent = window.localStorage.getItem(agentName);
  7. // var ua = null;
  8. // var opts = opt || {}
  9. // if(userAgent) {
  10. // ua = JSON.parse(userAgent);
  11. // }
  12. //
  13. // var param ={};
  14. // if(ua) {
  15. // param = {
  16. // "userAgent_is_switch": "1",
  17. // "userAgent_id": ua.id,
  18. // "userAgent_uid": ua.uid,
  19. // "userAgent_openid": ua.openid,
  20. // "userAgent_token": ua.token,
  21. // "userAgent_lastUid": ua.lastUid,
  22. // "userAgent_platform": ua.platform,
  23. // "userAgent_represented": ua.represented
  24. // }
  25. // }
  26. //
  27. // if("object" == typeof url) {
  28. // opts = $.extend(true, opts , url);
  29. // }
  30. //
  31. // if(opts.type.toUpperCase() == "POST") {
  32. // opts.data = $.extend(true,{},opts.data, param)
  33. // } else if(opts.data){
  34. // if((typeof opts.data == 'string')&& opts.data.constructor == String) {
  35. // opts.data += "&"+$.param(param)
  36. // } else {
  37. // opts.data = $.extend(true,{},opts.data, param)
  38. // }
  39. // }
  40. //
  41. // opts.beforeSend = function(request,settings) {
  42. //
  43. // }
  44. // return jqAjax(url, opts);
  45. // }
  46. //}
  47. /**
  48. * 统一请求ajax发送方法
  49. * url 请求地址:例如:patient/health_index/add
  50. * params 请求参数
  51. * dataType 数据类型:json等
  52. * reqType 请求方式:get 或 post
  53. * error 请求失败处理方法
  54. * success 请求成功处理方法
  55. */
  56. function sendPost(url, params, dataType, reqType, error, success,timeOut) {
  57. var userAgent = window.localStorage.getItem(agentName);
  58. var serverUrl = "";
  59. if(url.indexOf("http://")>-1 || url.indexOf("https://")>-1 ) {
  60. serverUrl = url;
  61. } else {
  62. serverUrl = server + url;
  63. }
  64. //发送ajax请求
  65. $.ajax(serverUrl, {
  66. data: params,
  67. dataType: dataType,
  68. beforeSend: function(request) {
  69. request.setRequestHeader("userAgent", userAgent);
  70. },
  71. timeout: timeOut || 60000,
  72. type: reqType,
  73. error: function(res) {
  74. if(res.status == 999 || res.status == 998 || res.status == 997){
  75. loginUrl(res.status);
  76. return;
  77. }
  78. error(res);
  79. },
  80. success: function(res) {
  81. if(res.status == 999 || res.status == 998 || res.status == 997){
  82. loginUrl(res.status);
  83. return;
  84. }
  85. success(res);
  86. }
  87. });
  88. }
  89. function sendPostNoCache(url, params, dataType, reqType, error, success,timeOut) {
  90. var userAgent = window.localStorage.getItem(agentName);
  91. //发送ajax请求
  92. $.ajax(server + url, {
  93. data: params,
  94. dataType: dataType,
  95. cache: false,
  96. beforeSend: function(request) {
  97. request.setRequestHeader("userAgent", userAgent);
  98. },
  99. timeout: timeOut || 60000,
  100. type: reqType,
  101. error: function(res) {
  102. if(res.status == 999 || res.status == 998 || res.status == 997){
  103. loginUrl(res.status);
  104. return;
  105. }
  106. error(res);
  107. },
  108. success: function(res) {
  109. if(res.status == 999 || res.status == 998 || res.status == 997){
  110. loginUrl(res.status);
  111. return;
  112. }
  113. success(res);
  114. }
  115. });
  116. }
  117. /**
  118. * 统一请求ajax发送方法
  119. * url 请求地址:例如:patient/health_index/add
  120. * params 请求参数
  121. * dataType 数据类型:json等
  122. * reqType 请求方式:get 或 post
  123. * error 请求失败处理方法
  124. * success 请求成功处理方法
  125. */
  126. function sendPostAsync(url, params, dataType, reqType, error, success) {
  127. var userAgent = window.localStorage.getItem(agentName);
  128. //发送ajax请求
  129. $.ajax(server + url, {
  130. data: params,
  131. dataType: dataType,
  132. async:false,
  133. beforeSend: function(request) {
  134. request.setRequestHeader("userAgent", userAgent);
  135. },
  136. type: reqType,
  137. error: function(res) {
  138. if(res.status == 999 || res.status == 998 || res.status == 997){
  139. loginUrl(res.status);
  140. return;
  141. }
  142. error(res);
  143. },
  144. success: function(res) {
  145. if(res.status == 999 || res.status == 998 || res.status == 997){
  146. loginUrl(res.status);
  147. return;
  148. }
  149. success(res);
  150. }
  151. });
  152. }
  153. //重新登陆
  154. var count = 0;
  155. function loginUrl(status){
  156. var pageurl = "";
  157. // var hreftemp = server + "wx/html/home/html/zhmm-login.html?type=0&openid=";
  158. var hreftemp = "../../home/html/zhmm-login.html?type=0&openid=";
  159. var content = "";
  160. count ++;
  161. try{
  162. if(d){
  163. d.close();
  164. }
  165. }catch(e){
  166. //TODO handle the exception
  167. }
  168. //如果有两个以上的请求会获得999等错误码的时候,只处理第一个
  169. if(count >= 2){
  170. return false;
  171. }
  172. if(status == 999){
  173. content = "此账号已在别处登录,需要请重新登录";
  174. }else if(status == 998){
  175. content = "登录超时,需要请重新登录";
  176. }else if(status == 997){
  177. content = "此账号未登录,需要请重新登录";
  178. // hreftemp=server + "wx/html/home/html/zhmm-login.html?type=0&openid="
  179. hreftemp = "../../home/html/zhmm-login.html?type=0&openid=";
  180. }
  181. var openid = "";
  182. var userAgent = window.localStorage.getItem(agentName);
  183. if(userAgent){
  184. var jsonstr = $.parseJSON(userAgent);
  185. openid = jsonstr.openid;
  186. }
  187. if(openid==null||openid==""){
  188. Request = GetRequest();
  189. openid = Request["openid"];
  190. }
  191. clearAgent();
  192. //将保存访问路径的逻辑放到clearAgent后面
  193. pageurl = window.parent.location.href;
  194. saveAgentPage(pageurl);
  195. dialog({
  196. skin:"ui-dialog ax-popup pror",
  197. content: content,
  198. ok: function (){
  199. count = 0;
  200. window.parent.location.href = hreftemp+openid;
  201. }
  202. }).showModal();
  203. }
  204. // 获取异步请求处理Promise对象
  205. function getReqPromise(url, params, dataType, reqType) {
  206. return new Promise(function(resolve, reject) {
  207. sendPost(url, params,dataType, reqType,
  208. function queryFailed (xht, type, throwErr) {
  209. reject({
  210. xht:xht, type:type, throwErr:throwErr
  211. })
  212. }
  213. , function success(res) {
  214. resolve(res);
  215. });
  216. });
  217. }
  218. /*
  219. * reqs: 请求的参数数组,格式:[{url:'a/xxx', reqType: 'POST', data:{...}},{url:'b/xxx',data:{...}}]
  220. * */
  221. function getReqPromises(reqs) {
  222. if(!reqs || !reqs.length) {
  223. return new Promise(function(resolve, reject) {
  224. resolve([]);
  225. });
  226. }
  227. return Promise.all(_.map(reqs,function(param){
  228. return getReqPromise(param.url,param.data,param.dataType, param.reqType);
  229. }));
  230. };
  231. /*
  232. * 获取图片路径方法修改
  233. */
  234. function getImgUrl(str){
  235. if(typeof str != 'string'){
  236. return "";
  237. }
  238. if(str.length == 0){
  239. return "";
  240. }else{
  241. if(str.indexOf("../")>-1){
  242. //访问本地路径
  243. return str;
  244. }else if((str.indexOf("http://")>-1) || (str.indexOf("https://")>-1)){
  245. return str;
  246. }else{
  247. //服务器上的图片路径
  248. return imgUrlDomain + str;
  249. }
  250. }
  251. }