主頁(yè) > 知識(shí)庫(kù) > 解決ajax返回驗(yàn)證的時(shí)候總是彈出error錯(cuò)誤的方法

解決ajax返回驗(yàn)證的時(shí)候總是彈出error錯(cuò)誤的方法

熱門(mén)標(biāo)簽:老虎郵局地圖標(biāo)注點(diǎn) 徐州電銷卡外呼系統(tǒng)供應(yīng)商 百靈鳥(niǎo) 上海浦東百度地圖標(biāo)注中心注冊(cè) 青海醫(yī)療智能外呼系統(tǒng)怎么樣 目標(biāo)三維地圖標(biāo)注 科智聯(lián)智能電銷機(jī)器人 外呼系統(tǒng)獲取客戶手機(jī)號(hào) 襄陽(yáng)外呼系統(tǒng)接口

發(fā)一個(gè)簡(jiǎn)單案例:
前臺(tái):

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
html> 
 head> 
   title>用戶登錄/title> 
   script type="text/javascript" src="../js/jquery-easyui-1.3.5/jquery.min.js">/script> 
   script type="text/javascript" src="../js/jquery-easyui-1.3.5/jquery.easyui.min.js">/script> 
   link rel="stylesheet" href="../js/jquery-easyui-1.3.5/themes/default/easyui.css" type="text/css">/link> 
   link rel="stylesheet" href="../js/jquery-easyui-1.3.5/themes/icon.css" type="text/css">/link> 
   script type="text/javascript" src="../js/jquery-easyui-1.3.5/locale/easyui-lang-zh_CN.js">/script> 
   meta http-equiv="content-type" content="text/html;charset=UTF-8" /> 
   script type = "text/javascript" charset = "UTF-8"> 
   $(function(){ 
     var loginDialog; 
     loginDialog = $('#loginDialog').dialog({ 
       closable : false , // 組件添加屬性:讓關(guān)閉按鈕消失 
       //modal : true, //模式化窗口 
       buttons : [{ 
         text:'注冊(cè)', 
         handler:function(){ 
            
         } 
       }, 
       { 
         text:'登錄', 
         handler:function(){ 
            $.ajax({ 
             url:'../servlet/Login_Do', 
             data :{ 
                name:$('#loginForm input[name=name]').val(), 
                password:$('#loginForm input[name=password]').val() 
               }, 
             dataType:'json', 
             success:function(r){ 
              //var dataObj=eval("("+data+")"); 
               alert("進(jìn)來(lái)了"); 
             }, 
             error:function(){ 
               alert("失敗"); 
             }   
              
           }); 
            //alert(data) 
         } 
       }] 
     }); 
   }); 
   /script>  
 /head> 
 body style=”width:100%;height:100%;" > 
    div id = "loginDialog" title = "用戶登錄" style = "width:250px;height:250px;" > 
      form id = "loginForm" method = "post"> 
        table> 
        tr> 
          th>用戶名 :/th> 
          td>input type = "text" class = "easyui-validatebox" data-options="required:true" name = "name">br>/td> 
        /tr> 
        tr> 
          th>密碼: /th> 
          td> input type = "password" class = "easyui-validatebox" data-options="required:true" name = "password">br>/td>/td> 
        /tr> 
        /table> 
      /form>  
    /div> 
 /body> 
/html> 

 后臺(tái):

public class Login_Do extends HttpServlet { 
  public void doGet(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
      this.doPost(request, response); 
  } 
  public void doPost(HttpServletRequest request, HttpServletResponse response) 
      throws ServletException, IOException { 
    request.setCharacterEncoding("UTF-8");  
    response.setCharacterEncoding("UTF-8"); 
    String name =request.getParameter("name"); 
    String password = request.getParameter("password"); 
    String js = "{\"name\":name,\"password\":password}"; 
    PrintWriter out = response.getWriter(); 
    JSONObject json = new JSONObject(); 
    json.put("name",name); 
    out.print(json.toString()); 
    response.getWriter().write(json.toString()); 
  } 
}

 點(diǎn)擊登錄時(shí):

解決辦法:彈出error信息一般有兩種可能:
第一種:url錯(cuò)誤,后臺(tái)直接得不到值
可以用火狐的firebug查看:如果響應(yīng)了信息,則不是這個(gè)問(wèn)題,那么就有可能是第二種情況
返回?cái)?shù)據(jù)類型錯(cuò)誤:
在我這個(gè)例子中,返回的數(shù)據(jù)無(wú)意中打印了兩次,這兩句刪去一句就好了:

out.print(json.toString()); 
response.getWriter().write(json.toString());  

造成了錯(cuò)誤。這時(shí)在firebug顯示的信息是:

以上就是為大家分析的用ajax返回驗(yàn)證的時(shí)候總是彈出error的原因,希望對(duì)大家解決此類問(wèn)題有所幫助。

您可能感興趣的文章:
  • 詳解ajax的data參數(shù)錯(cuò)誤導(dǎo)致頁(yè)面崩潰
  • 快速解決ajax請(qǐng)求出錯(cuò)狀態(tài)碼為0的問(wèn)題
  • PHP 中使用ajax時(shí)一些常見(jiàn)錯(cuò)誤總結(jié)整理
  • 完美解決ajax跨域請(qǐng)求下parsererror的錯(cuò)誤
  • ajax跨域訪問(wèn)報(bào)錯(cuò)501的解決方法
  • jQuery中ajax錯(cuò)誤調(diào)試分析
  • Ajax向后臺(tái)傳json格式的數(shù)據(jù)出現(xiàn)415錯(cuò)誤的原因分析及解決方法
  • Ajax犯的錯(cuò)誤處理方法
  • js ajaxfileupload.js上傳報(bào)錯(cuò)的解決方法
  • Jquery Ajax Error 調(diào)試錯(cuò)誤的技巧
  • django使用ajax post數(shù)據(jù)出現(xiàn)403錯(cuò)誤如何解決
  • Ajax報(bào)錯(cuò)400的參考解決辦法

標(biāo)簽:佛山 股票 揭陽(yáng) 咸寧 荊州 紅河 商洛 辛集

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《解決ajax返回驗(yàn)證的時(shí)候總是彈出error錯(cuò)誤的方法》,本文關(guān)鍵詞  解決,ajax,返回,驗(yàn)證,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《解決ajax返回驗(yàn)證的時(shí)候總是彈出error錯(cuò)誤的方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于解決ajax返回驗(yàn)證的時(shí)候總是彈出error錯(cuò)誤的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章