gpt4 book ai didi

javascript - 将日期时间转换为 ISO 格式

转载 作者:行者123 更新时间:2023-11-30 14:58:09 26 4
gpt4 key购买 nike

我有一个格式为 dd.MM.yyyy HH:mm:ss 的日期,我需要将其转换为 ISO 格式,但它无法正常工作。这是我的代码:

let date = '12.01.2016 0:00:00'; //12 January 2016
let parsedDate = moment(date, 'dd.MM.yyyy HH:mm:ss')
console.log(parsedDate.toISOString()); //result is 2016-12-31T23:00:00.000Z

例子2:

let date = '12.01.2016 0:00:00'; //12 January 2016
let parsedDate = new Date(date)
console.log(parsedDate.toISOString()); //result is 2016-11-30T23:00:00.000Z

问题出在哪里?为什么我会得到不同的结果?

最佳答案

你的 format parameter是错误的,请改用 'DD.MM.YYYY H:mm:ss'

没有小写字母 dd,使用大写字母 DD 表示月份中的第几天,使用大写字母 YYYY 表示年份而不是小写字母 yyyy

请注意toISOString() :

Note that .toISOString() always returns a timestamp in UTC, even if the moment in question is in local mode. This is done to provide consistency with the specification for native JavaScript Date .toISOString(), as outlined in the ES2015 specification.

let date = '12.01.2016 0:00:00'; //12 January 2016
let parsedDate = moment(date, 'DD.MM.YYYY H:mm:ss')
console.log(parsedDate.toISOString());
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.19.1/moment.min.js"></script>

关于javascript - 将日期时间转换为 ISO 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46931440/

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