在AngularJS中,我能够在服务和控制器中使用过滤器(管道),使用类似于下面的语法:
$filter('date')(myDate, 'yyyy-MM-dd');
在Angular中,可以在服务/组件中像这样使用管道吗?
在AngularJS中,我能够在服务和控制器中使用过滤器(管道),使用类似于下面的语法:
$filter('date')(myDate, 'yyyy-MM-dd');
在Angular中,可以在服务/组件中像这样使用管道吗?
当前回答
如果您不想使用新的mpipe(),因为您正在向管道注入依赖项,您可以注入像provider这样的组件并使用而不使用new。
例子:
import { Component, OnInit } from '@angular/core';
import { myPipe} from './pipes';
@Component({
selector: 'my-component',
template: '{{ data }}',
providers: [ myPipe ]
})
export class MyComponent() implements OnInit {
data = 'some data';
constructor(private myPipe: myPipe) {}
ngOnInit() {
this.data = this.myPipe.transform(this.data);
}
}
其他回答
这个答案现在已经过时了
建议使用其他答案的DI方法代替此方法
最初的回答:
您应该能够直接使用该类
new DatePipe().transform(myDate, 'yyyy-MM-dd');
例如
var raw = new Date(2015, 1, 12);
var formatted = new DatePipe().transform(raw, 'yyyy-MM-dd');
expect(formatted).toEqual('2015-02-12');
像往常一样,在Angular中,你可以依赖依赖注入:
import { DatePipe } from '@angular/common';
class MyService {
constructor(private datePipe: DatePipe) {}
transformDate(date) {
return this.datePipe.transform(date, 'yyyy-MM-dd');
}
}
将DatePipe添加到模块中的提供者列表中;如果你忘记这样做,你会得到一个错误没有提供DatePipe:
providers: [DatePipe,...]
更新Angular 6: Angular 6现在几乎公开提供了管道使用的所有格式化函数。例如,现在可以直接使用formatDate函数。
import { formatDate } from '@angular/common';
class MyService {
constructor(@Inject(LOCALE_ID) private locale: string) {}
transformDate(date) {
return formatDate(date, 'yyyy-MM-dd', this.locale);
}
}
在Angular 5之前:需要注意的是,DatePipe在版本5之前都依赖于Intl API,这不是所有浏览器都支持的(查看兼容性表)。
如果你使用的是较旧的Angular版本,你应该将Intl polyfill添加到你的项目中以避免任何问题。 请参阅相关问题以获得更详细的答案。
从Angular 6开始,你可以从@angular/common实用程序中导入formatDate来在组件中使用。
它是在https://github.com/smdunn/angular/commit/3adeb0d96344c15201f7f1a0fae7e533a408e4ae上介绍的
I可以用作:
import {formatDate} from '@angular/common';
formatDate(new Date(), 'd MMM yy HH:mm', 'en');
尽管必须提供locale
是的,通过使用简单的自定义管道就可以实现。使用自定义管道的优点是,如果将来需要更新日期格式,我们可以去更新单个文件。
import { Pipe, PipeTransform } from '@angular/core';
import { DatePipe } from '@angular/common';
@Pipe({
name: 'dateFormatPipe',
})
export class dateFormatPipe implements PipeTransform {
transform(value: string) {
const datePipe = new DatePipe("en-US");
value = datePipe.transform(value, 'MMM-dd-yyyy');
return value;
}
}
{{currentDate | dateFormatPipe }}
你可以在任何地方使用这个管道,组件,服务等等。
例如:
import { Component } from '@angular/core';
import {dateFormatPipe} from './pipes'
export class AppComponent {
currentDate : any;
newDate : any;
constructor() {
this.currentDate = new Date().getTime();
let dateFormatPipeFilter = new dateFormatPipe();
this.newDate = dateFormatPipeFilter.transform(this.currentDate);
console.log(this.newDate);
}
我使用这个方法:
import { Component, OnInit } from '@angular/core';
import {DatePipe} from '@angular/common';
@Component({
selector: 'my-app',
templateUrl: './my-app.component.html',
styleUrls: ['./my-app.component.scss']
})
export class MyComponent() implements OnInit {
constructor(private datePipe: DatePipe) {}
ngOnInit(): void {
let date = this.transformDate('2023-02-01T06:40:49.562Z');
console.log('date:',date);
}
transformDate(date: string) {
return this.datePipe.transform(date, 'yyyy-MM-dd');
}
}