En este artículo, veremos qué es getLocaleFirstDayOfWeek en Angular 10 y cómo usarlo. getLocaleFirstDayOfWeek se usa para obtener el primer día de la semana para la configuración regional dada.
Sintaxis:
getLocaleFirstDayOfWeek(locale : string): WeekDay
NgModule: el módulo utilizado por FirstDayOfWeek es:
- CommonModule
Acercarse:
- Cree la aplicación angular.
- En app.module.ts, importe LOCALE_ID porque necesitamos importar la configuración regional para usar getLocaleDayNames.
import { LOCALE_ID, NgModule } from '@angular/core';
- En app.component.ts, importe getLocaleFirstDayOfWeek y LOCALE_ID.
- Inyecte LOCALE_ID como una variable pública y escriba el código para obtener el primer día de la semana usando la variable local.
- En app.component.html, muestre la variable local mediante la interpolación de strings.
- Sirva la aplicación angular usando ng serve para ver el resultado.
Parámetros:
- locale: Un código local con reglas.
Valor de retorno:
- número: Índice a partir de 0.
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 {getLocaleFirstDayOfWeek } from '@angular/common'; import { Component, Inject,OnInit, LOCALE_ID } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { day = getLocaleFirstDayOfWeek(this.locale); dd = ''; constructor( @Inject(LOCALE_ID) public locale: string,){ if(this.day==0){ this.dd = 'Sunday'; } } }
app.component.html
<h1> GeeksforGeeks </h1> <p>First Days of week : {{dd}}</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 {getLocaleFirstDayOfWeek } from '@angular/common'; import { Component, Inject, LOCALE_ID } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { day = getLocaleFirstDayOfWeek(this.locale); constructor( @Inject(LOCALE_ID) public locale: string,){ } }
app.component.html
<h1> GeeksforGeeks </h1> <p>index value of first Day of week : {{day}}</p>
Producción:
Referencia: https://angular.io/api/common/getLocaleFirstDayOfWeek