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

前端之家收集整理的这篇文章主要介绍了javascript – 如何在Angular2项目中将moment.js实现为管道前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在angular2项目中实现moment.js库我命令将UTC时间转换为某个时区Europe / london并使用时刻和[时刻时区] 1

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

npm install moment –save

这是我目前的代码

  1. import { Component,Pipe,PipeTransform } from '@angular/core';
  2. import * as moment from 'moment';
  3.  
  4. @Pipe({ name: 'moment' })
  5. class MomentPipe{
  6. transform(date,format) {
  7. return moment(date).format(format);
  8. }
  9. }

Html:

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

  1. //time.bookingTime.iso == 2016-07-20T21:00:00.000Z
  2.  
  3. {{time.bookingTime.iso | moment}}

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

解决方法

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

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

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

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

  1. import {Pipe,PipeTransform} from '@angular/core';
  2. import * as moment from 'moment';
  3.  
  4. @Pipe({
  5. name: 'momentPipe'
  6. })
  7. export class MomentPipe implements PipeTransform {
  8. transform(value: Date|moment.Moment,...args: any[]): any {
  9. let [format] = args;
  10. return moment(value).format(format);
  11. }
  12. }

猜你在找的JavaScript相关文章