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


Node.js Date.locale()用法及代碼示例


date-and-time.Date.locale() 方法用於獲取語言環境或將語言環境從一種語言切換為另一種語言。

所需模塊:通過 npm 安裝模塊或在本地使用它。

通過使用 npm:

npm install date-and-time --save

通過使用 CDN 鏈接:

<script src="/path/to/date-and-time.min.js"></script>

用法:



locale(])

參數:此方法將語言環境和代碼作為參數。

返回值:此方法返回日期和時間對象的當前語言環境。

範例1:

index.js


// Node.js program to demonstrate the  
// Date.locale() APi
  
// Importing date-and-time module
const date = require('date-and-time')
  
// Getting the locale value
const value = date.locale();
  
// display the result
console.log("current locale:- " + value)

使用以下命令運行index.js文件:

node index.js

輸出:

current locale:- en

示例 2:更改區域設置

文件名:index.js

index.js


// Node.js program to demonstrate the  
// Date.locale() APi
  
// Importing date-and-time module
const date = require('date-and-time')
  
// Changing the local to es spanish
console.log("Change local "+date.locale('es'))

使用以下命令運行index.js文件:

node index.js

輸出:

Change local es

參考:https://github.com/knowledgecode/date-and-time#localecode-locale

相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js date-and-time Date.locale() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。