我不确定如何让Angular定时器指令在本地时间显示倒计时?我的服务器应用程序(Laravel)返回UTC (ISO 8601)的时间。
例如:2016-08-06T09:11:01Z
与我的时区相比,这大约晚了7个小时。
angular相对日期指令将返回正确的本地化时间:{{feed.date | relativeDate}}
Output: 2 mins ago
但我不确定如何将其转换为可用于计时器在当地时间显示的时间戳?这不会显示正确的end-time
在我的时区。
<timer end-time="feed.time*1000">@{{hhours}}h</timer>
feed.time
类似于1470448297
使用角矩,
获取相对时间:
<span am-time-ago="feed.date"></span>