我试图实例化一个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.
我怎样才能解决这个问题? 有没有实例化管的另一种方式? 或者已经停止角内的配套部件管道实例?
如果你看看源代码,那么你会看到DatePipe构造要求一个必需的参数:
constructor(@Inject(LOCALE_ID) private _locale: string) {}
没有为数据管道没有缺省地方
https://github.com/angular/angular/blob/2.0.0/modules/%40angular/common/src/pipes/date_pipe.ts#L97
这就是为什么打字稿给出了错误。 这样,你必须开始你的变量,如下图所示:
datePipeEn: DatePipe = new DatePipe('en-US')
datePipeFr: DatePipe = new DatePipe('fr-FR')
constructor() {
console.log(this.datePipeEn.transform(new Date(), 'dd MMMM')); // 21 September
console.log(this.datePipeFr.transform(new Date(), 'dd MMMM')); // 21 septembre
}
希望它可以帮助你!
看起来一切都很好,误差必须在别的地方在你的代码。 见我plunker: https://plnkr.co/edit/koDu6YmB131E6sXc6rKg?p=preview
import {Component, NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
import {DatePipe} from '@angular/common';
@Component({
selector: 'my-app',
template: `
<div>
<h2>Hello {{name}}</h2>
</div>
`,
})
export class App {
dPipe = new DatePipe();
constructor() {
this.name = 'Angular2'
console.dir(this.dPipe);
console.log(this.dPipe.transform(new Date(), 'dd.MM'));
}
}
@NgModule({
imports: [ BrowserModule ],
declarations: [ App ],
bootstrap: [ App ]
})
export class AppModule {}
而@Harry宁..你不能注入管!