我有一個Highcharts
餅圖,它使用Ajax
調用來檢索JSONArray
中的數據。我需要去除所有(「」)的數據,並使其成爲Javascript
對象,但我遇到了困難。 JSON.Parse()
引發錯誤,因爲它表示數據已被解析。Highcharts餅圖數據損壞
如何以餅圖的正確格式獲取此數據?
呼叫
function getData() {
$.ajax({
url: '/data/pie_chart.jsp',
cache: true,
datatype: 'json',
error: function() { },
success: function (data, status, rsp) {
alert(data);
setPieData(data);
}
});
}
數據
[{"name":"Dual","load":"20"},{"name":"Gas","load":"35"},{"name":"Other_Fossil_Fuels","load":"15"},{"name":"Nuclear","load":"12"},{"name":"Hydro","load":"8"},{"name":"Wind","load":"10"},{"name":"Other_Renewables","load":"10"}]
檢查[這](http://stackoverflow.com/a/7432462/3281415)回答 – SerCrAsH