Ionic 2 - 将Json日期/日期()/转换为字符串

时间:2016-12-12 18:43:31

标签: angular ionic2

如何从REST转换JSON日期

  

/日期(1480525200000 + 0700)/

到字符串格式dd / MM / yyyy

1 个答案:

答案 0 :(得分:1)

您可以创建自定义管道:

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'myDate'
})

export class MyDatePipe implements PipeTransform {
  transform(value: string): any {
    return new Date(parseInt(value.substr(6)));
  }
}

然后在这样的模板中使用:

<div> date: {{jsonDate | myDate | date:"dd/MM/yyyy"}}</div>

其中jsonDate是您的/Date(1480525200000+0700)/

你可以看到@silentsod提到的上述链接。