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


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


基本信息

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

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

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

对象: esri/intl

自从:用于 JavaScript 4.12 的 ArcGIS API

用法说明

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

SubstituteDateTimeFormatOptions


日期值的格式选项。

属性:

类型说明
type String

此格式的类型。该值始终为 "date"

值永远是"date".

Intl.DateTimeFormat 对象的日期格式选项。

例子:

const dateFormat = {
  type: "date",
  intlOptions: {
    year: "numeric",
    month: "numeric",
    day: "numeric",
    hour: "numeric",
    minute: "numeric"
  }
};

let data = {
  time: Date.now()
};

intl.substitute("Date: {time}", data, {
  format: {
    time: dateFormat
  }
});

相关用法


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