MomentJS 错误解析通过 GET 请求发送的 Unix 时间戳
MomentJS Parsing Unix Timestamp Sent Through GET Request Incorrectly
我有一个包含 2 个字符串的数组,它们都是 Unix 时间。
[1484930449590,1548002449590]
将这些转换回人类可读的时间,得到今天的日期和 2 年前的日期。
然而,当我用 MomentJS 解析这两个时间戳时:
const start = moment(timeRange[0])
const end = moment(timeRange[1])
我收到以下值:
moment("2001-01-01T00:00:00.000")
moment("2001-04-01T00:00:00.000")
出于某种原因,momentJS 将两个时间戳都转换为 2001 年,即使年份应该是 2019 年和 2017 年。
首先解析字符串并不能使事情变得更好:
const start = moment(parseInt(timeRange[0]))
const end = moment(parseInt(timeRange[1]))
现在start
和end
是:
moment("1969-12-31T19:00:00.001")
moment("1969-12-31T19:00:00.004")
有人知道这是怎么回事吗?
我尝试了以下解决方案:
console.log(timeRange)
const start = moment(parseInt(timeRange[0]) / 1000)
console.log(start)
const end = moment(parseInt(timeRange[1]) / 1000)
console.log(end)
但没有任何变化:
1484931697215,1548003697215
moment("1969-12-31T19:00:00.000")
moment("1969-12-31T19:00:00.000")
更新:
问题是我错了 timeRange
是一个数组。相反,它实际上是一个字符串。发生这种情况是因为在客户端 timeRange
是一个数组,但是当它作为 GET 请求发送到服务器并使用 const timeRange = req.query.timeRange
检索时,它被转换为字符串。
您的时间戳以毫秒为单位,而不是以秒为单位。先尝试除以 1000:
const start = moment(parseInt(timeRange[0]/1000))
const end = moment(parseInt(timeRange[1]/1000))
那应该会给你正确的日期
问题是我错了 timeRange
是一个数组。相反,它实际上是一个字符串。发生这种情况是因为在客户端 timeRange
是一个数组,但是当它作为 GET 请求的一部分发送到服务器并使用 const timeRange = req.query.timeRange
检索时,它被转换为一个字符串。
解决方案是将 timeRange
重新转换回数组:
const times = req.query.timeRange.split(",")
const startDate = moment(parseInt(times[0]))
const endDate = moment(parseInt(times[1]))
我有一个包含 2 个字符串的数组,它们都是 Unix 时间。
[1484930449590,1548002449590]
将这些转换回人类可读的时间,得到今天的日期和 2 年前的日期。
然而,当我用 MomentJS 解析这两个时间戳时:
const start = moment(timeRange[0])
const end = moment(timeRange[1])
我收到以下值:
moment("2001-01-01T00:00:00.000")
moment("2001-04-01T00:00:00.000")
出于某种原因,momentJS 将两个时间戳都转换为 2001 年,即使年份应该是 2019 年和 2017 年。
首先解析字符串并不能使事情变得更好:
const start = moment(parseInt(timeRange[0]))
const end = moment(parseInt(timeRange[1]))
现在start
和end
是:
moment("1969-12-31T19:00:00.001")
moment("1969-12-31T19:00:00.004")
有人知道这是怎么回事吗?
我尝试了以下解决方案:
console.log(timeRange)
const start = moment(parseInt(timeRange[0]) / 1000)
console.log(start)
const end = moment(parseInt(timeRange[1]) / 1000)
console.log(end)
但没有任何变化:
1484931697215,1548003697215
moment("1969-12-31T19:00:00.000")
moment("1969-12-31T19:00:00.000")
更新:
问题是我错了 timeRange
是一个数组。相反,它实际上是一个字符串。发生这种情况是因为在客户端 timeRange
是一个数组,但是当它作为 GET 请求发送到服务器并使用 const timeRange = req.query.timeRange
检索时,它被转换为字符串。
您的时间戳以毫秒为单位,而不是以秒为单位。先尝试除以 1000:
const start = moment(parseInt(timeRange[0]/1000))
const end = moment(parseInt(timeRange[1]/1000))
那应该会给你正确的日期
问题是我错了 timeRange
是一个数组。相反,它实际上是一个字符串。发生这种情况是因为在客户端 timeRange
是一个数组,但是当它作为 GET 请求的一部分发送到服务器并使用 const timeRange = req.query.timeRange
检索时,它被转换为一个字符串。
解决方案是将 timeRange
重新转换回数组:
const times = req.query.timeRange.split(",")
const startDate = moment(parseInt(times[0]))
const endDate = moment(parseInt(times[1]))