1
我正在使用JQuery在Web服務中執行操作。在將數據寫回到我的數據庫之後,該服務返回一個JSON響應。我的要求如下所示:使用JQuery讀取JSON
$.ajax({
url: "/services/myService.svc/PostMessage",
type: "POST",
contentType: "application/json; charset=utf-8",
data: '{"message":"testing","comments":"test"}',
dataType: "json",
success: function (response) {
if ((response.d != null) && (response.d.length > 0)) {
// Parse the status code here
}
else { alert("error!"); }
},
error: function (req, msg, obj) {
alert("error: " + req.responseText);
}
});
當我返回響應,response.d包含以下內容:
[{ 「的StatusCode」:1}]
如何解析出StatusCode的值?
'response.d'是一個字符串還是一個數組? – SLaks