我需要覆盖默认的 Angular 7 日期管道格式(、、、medium
等short
)fullDate
,因为我不想使用两个日期管道(默认的一个和一个自定义的),所以我做了以下并且想知道是这样做是个好主意:
// extend-date.pipe.ts
import { Pipe, PipeTransform } from '@angular/core';
import { DatePipe } from '@angular/common';
@Pipe({
name: 'date'
})
export class ExtendDatePipe extends DatePipe implements PipeTransform {
constructor() {
super('en-US');
this.customDateFormats = {
medium: '...',
short: '...',
fullDate: '...',
longDate: '...',
mediumDate: '...',
shortDate: '...',
mediumTime: '...',
shortTime: '...'
};
}
transform(value: any, args?: any): any {
switch (args) {
case 'medium':
return super.transform(value, this.customDateFormats.medium);
case 'short':
return super.transform(value, this.customDateFormats.short);
case 'fullDate':
return super.transform(value, this.customDateFormats.fullDate);
case 'longDate':
return super.transform(value, this.customDateFormats.longDate);
case 'mediumDate':
return super.transform(value, this.customDateFormats.mediumDate);
case 'shortDate':
return super.transform(value, this.customDateFormats.shortDate);
case 'mediumTime':
return super.transform(value, this.customDateFormats.mediumTime);
case 'shortTime':
return super.transform(value, this.customDateFormats.shortTime);
default:
return super.transform(value, args);
}
}
}
// app.component.html
{{ someDate | date: 'medium' }} // The custom format will be displayed
如果我使用类似的东西{{ someDate | date: 'MM/dd/yyyy' }}
也可以。
所以基本上,我想知道是否存在这种情况无法正常工作,或者可能有更好的方法来实现这一点,但实现方式不同?