jquery $.post方法不執行的解決方法:設定傳回的資料為json數據,程式碼為【out.print(JSONObject.fromObject(result));】。
本教學操作環境:windows7系統、jquery3.2.1版本,此方法適用於所有品牌電腦。
jquery $.post方法不執行的解決方法:
關於JQuery的post回呼函數不執行問題
前端的post回呼函數就是不執行, 設定完斷點debug還是直接跳過不執行
錯誤示範:
後台程式碼
@RequestMapping(value = "login") public void CheckUserAccount(@RequestParam("account")String account, HttpServletResponse response) throws IOException{ JSONObject json_account = JSONObject.fromObject(account); int username = (Integer)json_account.get("username"); String password = json_account.getString("password"); logger.info("username = " + username + " password = " + password); int status; status = checkUserAccountService.IsCorrect(username, password); Map<String, Object> result = new HashMap<String, Object>(); Map<String, String> info_json = new HashMap<String, String>(); if(status == 1){ info_json.put("status", "success"); }else if(status == 0){ info_json.put("status", "errorpassword"); }else{ info_json.put("status", "noexitaccount"); } result.put("info", info_json); JSONObject json_object = JSONObject.fromObject(result); response.setContentType("text/json; charset=utf-8"); response.setHeader("Cache-Control", "no-cache"); PrintWriter out = response.getWriter(); out.print(result); out.flush(); out.close(); logger.info("验证结果是" + ((Map<String, String>)(result.get("info"))).get("status"));
重點的一句話是:
response.setContentType("text/json; charset=utf-8");
此處設定傳回的資料為json資料, 但是out.print(result);這裡輸出的是一個Map, so 前端辨識不出任何資料, 結果回呼函數直接跳過不執行(因為回呼函數只執行json資料)
正確示範:
改成: out .print(JSONObject.fromObject(result));
就可以了。
#相關免費學習推薦:javascript(影片)
以上是jquery $.post方法不執行怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!