Ajax請求ashx 返回 json 格式資料常見問題

來源:互聯網
上載者:User

標籤:style   blog   http   color   os   io   資料   art   

 

問題:ashx 返回的字串json格式,在前台ajax自動解析失敗。

問題分析:經過排查,發現是拼接json時出現” ’  “單引號,jquery無法解析,用” “ “雙引號才可以。例如:

string strjson="[ { ‘userName‘:‘test‘}]";  //單引號導致jquery無法自動解析。string strjson="[ {\"userName\":\"test\"}]"; // 雙引號可以解析;

 

ajax 代碼:

  $.ajax({                    type: ‘post‘,                    url: ‘Report.ashx?type=1‘,                    dataType: ‘json‘,                    async: ‘true‘, //非同步                    cache: ‘false‘,                    success: function(data) {                                              mychartOptions.series = data;                        var chart = $("#report1").highcharts(mychartOptions);                    },                    error: function(XMLHttpRequest, textStatus, errorThrown) {                        $("#report1").html("<span>擷取資料失敗" + textStatus + "</span>");                    }                });

 

後台ashx代碼:

  public void ProcessRequest(HttpContext context)        {            string type = context.Request["type"];            if (type == "1")            {                // 三種設定測試都通過,不設定contenType也可以     "application/json"  "text/plain"  "text/json"                 //context.Response.ContentType = "text/json";                string json = "[{\"userid\":123}]";                context.Response.Write(json);            }            else if (type == "2")            {                GetReport2(context);            }        }        

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.