如何在Angular 2中的DatePipe中设置区域设置bs?

时间:2017-08-28 13:02:38

标签: angular

providers:  [  { provide: LOCALE_ID, useValue: "bs-BA" }]

我正在尝试添加此项以获取bosnian中的月份名称但不起作用。有什么建议吗?

2 个答案:

答案 0 :(得分:0)

你好,你能看看这篇文章

set locale in datepipe

我认为以上帖子工作正常,你可以查一下吗

答案 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);
 }

This for "bs-BA"

This for "en-US"