Función Angular10 getLocaleDateFormat()

En este artículo, veremos qué es getLocaleDateFormat en Angular 10 y cómo usarlo.

El formato getLocaleDate

Sintaxis:

getLocaleDateFormat(locale: string, width: FormatWidth): string

NgModule: el módulo utilizado por getLocaleDateFormat es:

  • CommonModule

Acercarse: 

  • Cree la aplicación angular que se utilizará
  • En app.module.ts importa LOCALE_ID porque necesitamos que se importe la configuración regional para usar getLocaleDateFormat.
import { LOCALE_ID, NgModule } from '@angular/core';
  • En app.component.ts importe getLocaleDateFormat y LOCALE_ID
  • inyecta LOCALE_ID como una variable pública.
  • En app.component.html muestra la variable local usando la interpolación de strings
  • sirva la aplicación angular usando ng serve para ver el resultado.

Parámetros:

  • locale: Una string que contiene el código local con reglas.
  • ancho: El tipo de formato.

Valor de retorno:

  • string: string de strings de formato localizadas.

Ejemplo 1:

app.module.ts

import { LOCALE_ID, NgModule } 
        from '@angular/core';
import { BrowserModule }
        from '@angular/platform-browser';
  
import { AppRoutingModule } 
        from './app-routing.module';
import { AppComponent } 
        from './app.component';
  
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule
  ],
  providers: [
      { provide: LOCALE_ID, useValue: 'en-GB' },
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

app.component.ts

import {FormStyle,
        getLocaleDateFormat, 
        TranslationWidth, 
        FormatWidth} 
        from '@angular/common';
  
import {Component, 
        Inject,OnInit, 
        LOCALE_ID } 
        from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html'
})
export class AppComponent {
    for = getLocaleDateFormat(this.locale,     
               FormatWidth.Short);
    constructor(
        @Inject(LOCALE_ID) public locale: string,){}
      }

app.component.html

<h1>
   GeeksforGeeks
</h1>
<p>Date format is: {{for}}</p>

Producción:

Ejemplo 2:

app.module.ts

import { LOCALE_ID, NgModule } 
        from '@angular/core';
import { BrowserModule } 
        from '@angular/platform-browser';
  
import { AppRoutingModule } 
        from './app-routing.module';
import { AppComponent } 
        from './app.component';
  
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule
  ],
  providers: [
      { provide: LOCALE_ID, useValue: 'en-GB' },
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

app.component.ts

import {FormStyle,
  getLocaleDateFormat, 
  TranslationWidth, 
  FormatWidth} 
  from '@angular/common';
  
import {Component,
        Inject, 
        LOCALE_ID } 
        from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html'
})
export class AppComponent {
    for = getLocaleDateFormat(this.locale,     
            FormatWidth.Long);
    constructor(
        @Inject(LOCALE_ID) public locale: string,){}
      }

app.component.html

<h1>
   GeeksforGeeks
</h1>
<p>Date format is: {{for}}</p>

Producción:

Referencia:https://angular.io/api/common/getLocaleDateFormat

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *