最近刚接触 AngularJS ,用到 ng-repeat ,但是 json 中有个数据是 timestamp ,需要解析成可以看的时间,这个要怎么处理啊?
1
Exin 2016-09-17 14:48:17 +08:00 via Android 1
了解下 angular 的 filter
|
2
stiekel 2016-09-17 15:32:04 +08:00 1
使用 Angular 本身提供的 date filter 来解决 https://docs.angularjs.org/api/ng/filter/date
|
3
cstome OP @stiekel 还有个问题,加入我想用自己的 function 来解析 timestamp ,
<div class="time">{{x.t | praseTime}}</div> app.filter('praseTime', function (x.t){return praseTS(x.t)}); 这样写为什么不行? filter 要写在 controller 前面还是后面还是里面? |