angular4在typeScript中怎么调用过滤器处理时间格式

需求中要对时间格式化的处理,处理成类似20180323的类型,在过滤器中有定义和引入了时间格式转化的方法

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

@Pipe({ name: 'datex'})

export class DatexPipe implements PipeTransform {

transform(value: any,format: string = ""): string {

// Try and parse the passed value.

moment.locale('zh-cn'); let momentDate = moment(value);

// If moment didn't understand the value,return it unformatted.

if (!momentDate.isValid()) return value;

// Otherwise,return the date formatted as requested.

return momentDate.format(format); }}

其中datex是提供的过滤器

怎么在typeScript中使用呢:引入DatexPipe的类,new出它的对象,然后调用它的transform方法

import {DatexPipe} from '../../global/pipe'
let datexPipe = new DatexPipe() ; let date = datexPipe. transform( this. match.matchTime , 'YYYYMMDD') ;

得到的date就是20180323的格式。

在html上怎么使用过滤器呢?

<div class="time">
    <img src="assets/images/ic_date@2x.png">
    {{match.matchTime | datex: 'YYYY-MM-DD HH:mm'}}
</div>
<div class="duration">
    <img src="assets/images/ic_time@2x.png">
    {{match.matchDuration|possessionTimeFilter}}
</div>
调用datex并补上时间格式,得到的就是2018-03-23 11:30的格式了。

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...