Angular 2货币管道格式

时间:2017-05-10 14:04:04

标签: angular pipe currency angular2-pipe

现在我有: <span>{{(price | currency: 'EUR': true)}}</span>

并以标准格式输出 1,000.00

但我需要这种格式 1.000,00

1 个答案:

答案 0 :(得分:6)

在AppModule类中更改区域设置。

@NgModule({
  declarations: [
     //
  ],
  imports: [
    //
  ],
  providers: [
    //
  { provide: LOCALE_ID, useValue: "de-DE" }

],
  bootstrap: [AppComponent]
})
export class AppModule { }`

de-DE只是一个例子,使用你想要的任何语言环境。

此处有更多信息https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NumberFormat#Using_locales