主頁 > 知識庫 > 關于Ajax中通過response在后臺傳遞數(shù)據(jù)問題

關于Ajax中通過response在后臺傳遞數(shù)據(jù)問題

熱門標簽:怎樣在地圖標注文字 大眾點評400電話怎么申請 河間市地圖標注app 地圖標注推銷坑人 立陶宛地圖標注 電銷機器人 長春 上海企業(yè)外呼系統(tǒng)價錢 中國地圖標注不明確情況介紹表 東平縣地圖標注app

這是js代碼:

var System = { 
  getHttpRequest: function(url, callback, options) { 
    if (url.length  0) return; 
    var option = { 
      url: url, 
      type: "get", 
      dataType: "json", 
      cache: false, 
      timeout: 30000, 
      beforeSend: function(XHR) { 
      }, 
      complete: function(XHR, textStatus) { 
        XHR.abort(); 
      }, 
      error: function(XMLHttpRequest, textStatus, errorThrown) { 
        //alert("網(wǎng)絡連接不通,請稍后再試!"); 
      }, 
      success: function(data) { 
        callback(data, options); 
      } 
    }; 
    if ( !! options) { 
      option = $.extend(option, options); 
    } 
    $.ajax(option); 
  } 
}; 

當我想要通過回調(diào)函數(shù)success獲取data時,一開始我是直接在后臺return一個json字符串,結果會報異常,沒定義方法什么的,后來查了下,需要通過response.getWriter().write()方法寫入數(shù)據(jù),success中才能獲取到數(shù)據(jù)。后臺代碼如下:

public String getRejectReason() throws Exception{ 
    String rowId = getParameterAndPut("rowId",null,0).toString(); 
    String jsonData = ""; 
    if (StringUtils.isNotEmpty(rowId)) { 
      jsonData = newOwnerInfoService.getRejectReasonJsonData(rowId); 
    } 
    this.getResponse().setCharacterEncoding("utf-8"); 
    this.getResponse().getWriter().write(jsonData); 
    return null; 
} 

總結

以上所述是小編給大家介紹的Ajax中通過response在后臺傳遞數(shù)據(jù),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • Ajax中responseText返回的是一個頁面而不是一個值
  • ajax的responseText亂碼的問題的解決方法
  • jquery ajax學習筆記2 使用XMLHttpRequest對象的responseXML
  • Ajax request response 亂碼解決方法
  • Ajax Throws Sys.WebForms.PageRequestManagerErrorException with Response.Redirect的解決方法
  • ajax的 responseXML返回接受 asp

標簽:四川 遼寧 本溪 益陽 營口 玉樹 內(nèi)江 銅川

巨人網(wǎng)絡通訊聲明:本文標題《關于Ajax中通過response在后臺傳遞數(shù)據(jù)問題》,本文關鍵詞  關于,Ajax,中,通過,response,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《關于Ajax中通過response在后臺傳遞數(shù)據(jù)問題》相關的同類信息!
  • 本頁收集關于關于Ajax中通過response在后臺傳遞數(shù)據(jù)問題的相關信息資訊供網(wǎng)民參考!
  • 推薦文章