如何从angular2打字稿中获取这种格式的时间?
2016-9-25T05:10:04.106Z
我试过谷歌搜索找不到干净的方法。
TS中的这种方式给出了不合格的输出,
Date.now(); //1474804051687 timestamp
new Date; //Sun Sep 25 2016 17:14:45 GMT+0530
在JS中我们可以通过
获得该格式new Date; //2016-9-25T05:10:04.106Z
我缺少什么,有谁能指导我克服这个问题?
答案 0 :(得分:3)
答案 1 :(得分:0)
在角度中你可以直接使用in-bulit日期过滤器,就像角度1.X版本
一样https://docs.angularjs.org/api/ng/filter/date
价: https://auth0.com/blog/angular2-series-working-with-pipes/
希望这有助于:)