providers: [ { provide: LOCALE_ID, useValue: "bs-BA" }]
我正在尝试添加此项以获取bosnian中的月份名称但不起作用。有什么建议吗?
答案 0 :(得分:0)
答案 1 :(得分:0)
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);
}