gpt4 book ai didi

javascript - Date.parse() 与 moment().unix()

转载 作者:行者123 更新时间:2023-11-30 11:04:22 24 4
gpt4 key购买 nike

比较 Date.parse()moment().unix() 的结果时,我得到的毫秒数明显不同.不确定我错过了什么,因为 .parse().unix() 都是为了以毫秒为单位返回日期/时间字符串。

示例:

const endDate = '2019-05-29 17:00:00';

console.log("Moment: ", moment(endDate).unix()); // 1559142000
console.log("Parse: ", Date.parse(new Date(endDate))); // 1559142000000

最佳答案

moment(endDate).unix() 返回 unix 时间,自 1970 年 1 月 1 日以来的秒数。

Date.parse(new Date(endDate)) 返回自 1970 年 1 月 1 日以来的毫秒数,或 unix 时间的 1000 倍。 Date.parse(new Date(endDate))/1000 是 unix 时间

关于javascript - Date.parse() 与 moment().unix(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56280288/

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