javascript – 如何在Angular2项目中将moment.js实现为管道

我想在angular2项目中实现moment.js库我命令将UTC时间转换为某个时区Europe / london并使用时刻和[时刻时区] 1

到目前为止,我已使用以下命令在我的Angular2项目中安装了moment.js:

npm install moment –save

这是我目前的代码

import { Component,Pipe,PipeTransform } from '@angular/core';
import * as moment from 'moment';

@Pipe({ name: 'moment' })
class MomentPipe{
  transform(date,format) {
    return moment(date).format(format);
  }
}

Html:

我从后端收到了作为对象的时间

//time.bookingTime.iso == 2016-07-20T21:00:00.000Z

 {{time.bookingTime.iso | moment}}

它对我不起作用,我认为我的实施错误

解决方法

当您需要使用它时,您必须在@component中指定它:
@Component({
    moduleId: module.id,templateUrl: './xyz.component.html',styleUrls: ['./xyz.component.css'],pipes: [MomentPipe],directives: [...]
})
public export ...

并以这种方式在html中使用它:

{{now | momentPipe:'YYYY-MM-DD'}}

顺便说一句,这是我写管道的方法

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

@Pipe({
    name: 'momentPipe'
})
export class MomentPipe implements PipeTransform {
    transform(value: Date|moment.Moment,...args: any[]): any {
        let [format] = args;
        return moment(value).format(format);
    }
}

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...