当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。