gpt4 book ai didi

javascript - 如何从 d3 中 timeParse 函数的输出中删除时间戳

转载 作者:行者123 更新时间:2023-12-01 00:49:06 25 4
gpt4 key购买 nike

我有这个解析器:

var parseTime = d3.timeParse("%d-%b-%y");

这工作正常,但是,它总是将时间和时区附加到日期,尽管在上面的格式中,我指示仅包含日、月和年信息。

这是一个例子:

console.log(parseTime(new Date())); //Fri Jul 12 2019 00:00:00 GMT+0200

关于如何排除时间戳有什么想法吗?

最佳答案

使用 timeFormat 函数并传递函数 parseTime

var parseTime = d3.timeFormat("%B %d, %Y");
console.log(parseTime(new Date));
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/5.7.0/d3.min.js"></script>

关于javascript - 如何从 d3 中 timeParse 函数的输出中删除时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57133650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com