這似乎是一個微不足道的問題,但我得到一個奇怪的錯誤:大紀元轉換與D3
"Uncaught TypeError: t.slice is not a function"
試圖Unix時間戳傳遞給我的代碼時。
var myDate = new Date(1075611600000);
var format = d3.time.format("%Y").parse; //Trying to return the year.
console.log(format(myDate)); //error noted above
console.log(myDate); //Sun Feb 01 2004 00:00:00 GMT-0500 (EST)
有人看到我正在犯的明顯錯誤嗎?提前致謝。我看過this的例子,我不明白我做錯了什麼。我試圖只返回一年。
你到底想實現什麼呢? – Bigood