下面是我的jquery ajax调用。我从火虫中看到我得到了json的回应。
Content-Type application/json
{x:1363590711.97,y:0.277528026651}
然而......我无法弹出事件并提醒数据?我如何获得解析的json对象,以便我开始工作呢?
$.ajax({
type: 'GET',
url: 'ajax_test',
crossDomain: false,
dataType: 'json',
success: function(responseData) {
alert(responseData);
//seriesJsonData[0]['data'].push({y: responseData.y, x: responseData.x});
}
});
答案 0 :(得分:1)
当您请求dataType时,您的返回数据已被解析:'json'
$.ajax({
type: 'GET',
url: 'ajax_test',
crossDomain: false,
dataType: 'json',
success: function(responseData) {
alert(responseData.x + " " + responseData.y);
seriesJsonData[0]['data'].push(responseData);
}
});