0

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

1 回答 1

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);
    }
});
于 2013-03-18T07:20:50.550 回答