下面是我的 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});
}
});