我正在尝试DatePipe
在我的 Angular2 应用程序中实例化一个对象,以transform(...)
在我正在开发的组件中使用函数。
// ...
import { DatePipe } from '@angular/common';
@Component({...})
export class PanelComponent implements OnInit {
// ...
datePipe: DatePipe = new DatePipe(); // Error thrown here
// ...
}
此代码段在 RC5 中运行良好。现在我正在尝试升级到 Angular2 最终版本并在运行时收到此错误,ng serve
或者ng build
,
~/tmp/broccoli_type_script_compiler-input_base_path-XitPWaey.tmp/0/src/app/panel/panel.component.ts (33, 24):
Supplied parameters do not match any signature of call target.
我该如何解决这个问题?还有另一种实例化管道的方法吗?或者 Angular 是否停止支持在组件内实例化管道?