Función angular 10 getLocaleTimeFormat()

getLocaleTimeFormat se utiliza para obtener el formato de valor de tiempo localizado para la configuración regional dada.

Sintaxis:

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

NgModule: el módulo utilizado por getLocaleTimeFormat es:

  • CommonModule

Acercarse:

  • Cree la aplicación angular que se utilizará
  • En app.module.ts importa LOCALE_ID porque necesitamos importar la configuración regional para usar getLocaleTimeFormat.
    import { LOCALE_ID, NgModule } from '@angular/core';
  • En app.component.ts importe getLocaleTimeFormat 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: anchos de string disponibles para formatos de fecha y hora.

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,
        getLocaleTimeFormat, 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 = getLocaleTimeFormat(this.locale, FormatWidth.Short);
    constructor(
        @Inject(LOCALE_ID) public locale: string,){}
      }

app.component.html

<h1>
   GeeksforGeeks
 </h1>
   
<p>Time 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,
        getLocaleTimeFormat, 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 = getLocaleTimeFormat(this.locale,     FormatWidth.Full);
    constructor(
        @Inject(LOCALE_ID) public locale: string,){}
      }

app.component.html

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

Producción:

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

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 *