-
SubstituteNumberFormatOptions
数值的格式选项。
-
类型 说明 type String此格式的类型。该值始终为
"number"
。值永远是"number".
intlOptions Intl.NumberFormatOptionsIntl.NumberFormat 对象的国际数字格式选项。
属性:
例子:
// Formats a number with a fixed number of fraction digits const numberFormat = { type: "number", intlOptions: { style: "decimal", useGrouping: true, minimumFractionDigits: 2, maximumFractionDigits: 2 } }); let data = { value: 10 }; intl.substitute("A number: {value}", data, { value: numberFormat });
// Formats a number as currency, in Euros. const currencyFormat = { type: "number", intlOptions: { style: "currency", currency: "EUR", currencyDisplay: "symbol" } }; let data = { amount: 14 }; intl.substitute("Amount: {amount}", data, { amount: currencyFormat });
// Formats a number as a percentage. const percentFormat = { type: "number", intlOptions: { style: "percent" } }; let data = { growth: 0.5 }; intl.substitute("Growth: {growth}", data, { growth: percentFormat });
-
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/intl"], (intl) => { /* code goes here */ });
ESM:
import * as intl from "@arcgis/core/intl";
对象:
esri/intl
自从:用于 JavaScript 4.12 的 ArcGIS API
用法说明
intl.SubstituteNumberFormatOptions
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS intl.SubstituteOptions用法及代码示例
- JavaScript ArcGIS intl.SubstituteDateTimeFormatOptions用法及代码示例
- JavaScript ArcGIS intl.convertDateFormatToIntlOptions用法及代码示例
- JavaScript ArcGIS intl.normalizeMessageBundleLocale用法及代码示例
- JavaScript ArcGIS intl.fetchMessageBundle用法及代码示例
- JavaScript ArcGIS intl.formatNumber用法及代码示例
- JavaScript ArcGIS intl.convertNumberFormatToIntlOptions用法及代码示例
- JavaScript ArcGIS intl.createJSONLoader用法及代码示例
- JavaScript ArcGIS intl.registerMessageBundleLoader用法及代码示例
- JavaScript ArcGIS intl.setLocale用法及代码示例
- JavaScript ArcGIS intl.MessageBundleLoader用法及代码示例
- JavaScript ArcGIS intl.formatDate用法及代码示例
- JavaScript ArcGIS intl.onLocaleChange用法及代码示例
- JavaScript ArcGIS intl.substitute用法及代码示例
- JavaScript includes()用法及代码示例
- JavaScript isFinite()用法及代码示例
- JavaScript isNaN()用法及代码示例
- JavaScript ArcGIS imageService.getSamples用法及代码示例
- JavaScript ArcGIS SceneView double-click事件用法及代码示例
- JavaScript ArcGIS geometryEngineAsync.overlaps用法及代码示例
- JavaScript ArcGIS Expand.when用法及代码示例
- JavaScript ArcGIS Sublayer.JoinTableDataSource用法及代码示例
- JavaScript ArcGIS FillSymbol3DLayer.outline用法及代码示例
- JavaScript ArcGIS Ground.loadAll用法及代码示例
- JavaScript Object valueOf()用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 intl.SubstituteNumberFormatOptions。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。