當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Angular10 getLocaleFirstDayOfWeek()用法及代碼示例

在本文中,我們將了解 Angular 10 中的 getLocaleFirstDayOfWeek 是什麽以及如何使用它。 getLocaleFirstDayOfWeek 用於獲取給定語言環境的一周的第一天。

用法:

getLocaleFirstDayOfWeek(locale:string):WeekDay

NgModule:FirstDayOfWeek 使用的模塊是:

  • CommonModule

方法:

  • 創建角度應用程序。
  • 在 app.module.ts 中,導入 LOCALE_ID,因為我們需要為使用 getLocaleDayNames 導入語言環境。
import { LOCALE_ID, NgModule } from '@angular/core';
  • 在 app.component.ts 中,導入 getLocaleFirstDayOfWeek 和 LOCALE_ID。
  • 將 LOCALE_ID 作為公共變量注入,並使用語言環境變量編寫獲取一周第一天的代碼。
  • 在 app.component.html 中,使用字符串插值顯示局部變量。
  • 使用 ng serve 為 angular 應用程序提供服務以查看輸出。



參數:

  • locale:帶有規則的區域設置代碼。

返回值:

  • number:索引從 0 開始。

範例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';
            }
        }
}

應用程序組件.html


<h1>
  GeeksforGeeks
</h1>
  
<p>First Days of week:{{dd}}</p>

輸出:



範例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,){
        }
}

應用程序組件.html


<h1>
  GeeksforGeeks
</h1>
  
<p>index value of first Day of week:{{day}}</p>

輸出:

參考: https://angular.io/api/common/getLocaleFirstDayOfWeek




相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 Angular10 getLocaleFirstDayOfWeek() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。