所以目前我的JavaScript正在接收这样的时间戳:
tmpTimestamp = new Date(el.timestamp)
tmpTimestamp = tmpTimestamp.getTime()
它以UTC的纪元为单位返回日期(以毫秒为单位),但是由于我住在加利福尼亚州,因此在GMT-7中需要此日期。我尝试过:
tmpTimestamp = tmpTimestamp.getTime()-(tmpTimestamp.getTimezoneOffset()*60000)
但这似乎不起作用,有帮助吗?