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


JavaScript ArcGIS intl.formatDate用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/intl"], (intl) => { /* code goes here */ });

ESM: import * as intl from "@arcgis/core/intl";

对象: esri/intl

自从:用于 JavaScript 4.12 的 ArcGIS API

用法说明

intl.formatDate函数(或属性)的定义如下:

formatDate (value, formatOptions) {String}


DateNumber 值格式化为当前语言环境中的字符串。

在内部 formatDate 为当前语言环境创建 Intl formatter 实例。格式化程序使用它们的options 作为缓存键进行缓存。重复使用相同的 options 对象以获得最佳性能。

参数:

类型说明
value Date|Number

Date 对象,或自 1970 年 1 月 1 日 00:00:00 UTC 以来经过的毫秒数,将被格式化。

可选的

日期格式选项。

返回:

类型 说明
String 输入日期值的格式化字符串。

例子:

const now = Date.now(); // 1560375191812
const dateFormatIntlOptions = intl.convertDateFormatToIntlOptions("short-date-short-time");

const formattedDate = intl.formatDate(now, dateFormatIntlOptions);

console.log(formattedDate); // expected output for English locale: "6/12/2019, 2:33 PM"

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 intl.formatDate。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。