这应该很容易!
我有一个 JavaScript Date 对象,我想用D3 的时间函数把它变成一个有吸引力的字符串。
var format = d3.time.format('%e %b').parse;
console.log('graph_x', graph_x, typeof graph_x, String(graph_x), format(String(graph_x)));
这给了我:
graph_x
Tue Dec 25 2012 08:26:10 GMT+0000 (GMT)
object
Tue Dec 25 2012 08:26:10 GMT+0000 (GMT)
null
如何将我的 Date 对象变成一个不错的字符串,例如“Tue 25”?