我試圖將UTC日期轉換爲圖表上x軸的當前日期。我很確定我沒有正確使用Date.parse
。任何幫助表示讚賞。謝謝。將字符串轉換爲javascript日期對象
$.ajax({
url: "/chart/ajax_get_chart", // the URL of the controller action method
dataType: "json",
type: "GET",
success: function (result) {
var result = JSON.parse(result);
series = [];
for (var i = 0; i < result.length; i++) {
date = Date.parse(result[i]['date']);
tempArray = [parseFloat(result[i]['price'])];
series.push(tempArray);
series.push(date);
}
謝謝,但我不知道的分配結果後該怎麼辦 – evann
噢,對不起,我不知道你會用它做什麼。我看到你正在將價格推向一個數組;陣列應該包含日期和價格? –
我想要兩個單獨的數組,問題是圖表x軸上的日期和時間不正確。我正確地得到我的控制檯中的數組。 – evann