gpt4 book ai didi

javascript - 将字符串转换为 ISODate

转载 作者:可可西里 更新时间:2023-11-01 01:31:57 26 4
gpt4 key购买 nike

如何将字符串 "2015-02-02" 转换为 ISODate 2015-02-02T00:00:00.000Z?我试图找到一些例子,但没有找到。

最佳答案

您可以为此使用常规的 Javascript 日期功能

new Date(dateString).toISOString()

来自 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse

但是,日期解析在浏览器之间非常不一致,所以如果你需要它是健壮的,我会考虑使用例如 Moment.js 进行解析,因为这将允许你指定一个格式字符串,日期应该被解析为这样的

date = moment("12-25-1995", "YYYY-MM-DD");
date.format(); //will return an ISO representation of the date

来自:http://momentjs.com/docs/#/parsing/string/

关于javascript - 将字符串转换为 ISODate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35959853/

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