providers: [ { provide: LOCALE_ID, useValue: "bs-BA" }]
我想添加這個在bosnian中獲取月份名稱,但不工作。任何建議?如何在Angular 2中的DatePipe中設置區域bs?
providers: [ { provide: LOCALE_ID, useValue: "bs-BA" }]
我想添加這個在bosnian中獲取月份名稱,但不工作。任何建議?如何在Angular 2中的DatePipe中設置區域bs?
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { LOCALE_ID } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ],
providers: [
{ provide: LOCALE_ID, useValue: 'bs-BA' },
],
})
export class AppModule { }
在
在組件
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
{{date | date: 'd MMMM y'}}
`
})
export class AppComponent {
date = new Date(1988, 2, 15);
}
IM已經使用代碼從後 – None
好讓我查 – Robert
嗨,我們可以這樣做https://stackoverflow.com/a/40090356/7261317 – Robert