以下は私の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});
}
});