拥有原始CSV(cities_9_2.csv)文件,如下所示:
date
"Wed, 01 Jul 2015 15:16:45 GMT"
"Wed, 01 Jul 2015 15:22:13 GMT"
"Wed, 01 Jul 2015 15:28:52 GMT"
"Wed, 01 Jul 2015 19:56:27 GMT"
想要将时间格式更改为5/16/2016 12:00:00AM
,请在下面输入此d3代码,导出文件代码符合https://github.com/agershun/alasql/wiki/How-to-export-JavaScript-array-info-to-csv-on-client-side。
但是目前下载的csv文件是空的,有谁知道为什么?
var array_date = [];
var parser = d3.time.format("%Y/%m/%d %I%P");
d3.csv("cities_9_2.csv", function(data){
data.forEach(function(d) {
var theDate = parser.parse(d.date);
array_date.push(theDate);
})
});
window.exportData = function exportData() {
alasql("SELECT * INTO CSV('baba.csv') FROM ?",[array_date]);
}
答案 0 :(得分:2)
对于CSV中的这种日期格式,您不需要解析器,只需执行以下操作即可。
char
工作代码here
如果您想将其转换为dateformat,请执行:
var array_date = [];
d3.csv("my.csv", function(data){
console.log(data)
data.forEach(function(d) {
var theDate = new Date(d.date);//the will get the correct date
array_date.push(theDate);
});
console.log(array_date)
});
工作代码here