javascript – AngularJS错误的unix时间解析结果

前端之家收集整理的这篇文章主要介绍了javascript – AngularJS错误的unix时间解析结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个时间戳1378028575给我太阳,01九月2013 09:42:55 GMT here.但是当我尝试用Angular日期格式化它,它返回它为1970年1月17日上午2:47:08使用这种格式:{{‘1378028575’|日期: ‘中’}}.该网站的结果是正确的,但在Angular是错误的.为什么会发生,或者我做错了什么?

解决方法

它的原因你使用秒不是毫秒.
new Date(1378028575)
Fri Jan 16 1970 23:47:08 GMT+0100 (CET)

new Date(1378028575000)
Sun Sep 01 2013 11:42:55 GMT+0200 (CEST)

从角度文档:

Date to format either as Date object,milliseconds (string or number) or varIoUs ISO 8601 datetime string formats (e.g. yyyy-MM-ddTHH:mm:ss.SSSZ and its shorter versions like yyyy-MM-ddTHH:mmZ,yyyy-MM-dd or yyyyMMddTHHmmssZ). If no timezone is specified in the string input,the time is considered to be in the local timezone.

猜你在找的JavaScript相关文章