<code>$.ajax({ url : rootPath+"/doRegister", type: "post", data : dates, contentType : "application/x-www-form-urlencoded; charset=UTF-8", timeout : 30000, dataType :"json", cache : false, error : function(e) { console.log(4441); console.log(e) alert("用户注册网络连接出错~"); window.location.reload(); }, success : function(obj) { console.log(4442) //重启服务器,令牌失效,重新获取令牌 if (typeof (obj) == 'undefined' || obj == null) { window.location.reload(); } if (obj.rs) { window.location.href = rootPath+"/loginRule"; } else { alert(obj.msg); $("#_form_token_uniq_id").val(obj.token.token); } }</code>
<code>$.ajax({ url : rootPath+"/doRegister", type: "post", data : dates, contentType : "application/x-www-form-urlencoded; charset=UTF-8", timeout : 30000, dataType :"json", cache : false, error : function(e) { console.log(4441); console.log(e) alert("用户注册网络连接出错~"); window.location.reload(); }, success : function(obj) { console.log(4442) //重启服务器,令牌失效,重新获取令牌 if (typeof (obj) == 'undefined' || obj == null) { window.location.reload(); } if (obj.rs) { window.location.href = rootPath+"/loginRule"; } else { alert(obj.msg); $("#_form_token_uniq_id").val(obj.token.token); } }</code>
我剛剛也遇到這個狀況了,我的是因為服務掛了。
截圖截少了,f12看它回傳的錯誤碼是多少,是否是請求報錯400…
你應該放response的截圖才能方便定位錯誤
你的截圖不完全,由於截圖不全,所以初步只能估計是因為400錯誤,或是介面處回傳的資料並不是想要的資料格式。而且你並沒有將回應頭也就是response headers截出來,所以比較抱歉,這個只能初步估計是沒有回應!