百科狗-知识改变命运!
--

TypedArray.prototype.toLocaleString() - JavaScript TypedArray 对象

百变鹏仔1年前 (2023-11-21)阅读数 21#技术干货
文章标签数组

TypedArray.prototype.toLocaleString()

toLocaleString()方法返回一个字符串,表明该类型化数组的元素。这些元素被转化为字符串并由一个区域设置指定的分隔符(例如逗号“,”)分隔。这个方法与Number.prototype.toLocaleString()是相同的。(类型化数组)的是typed array types中的其中一个。

语法

typedarray.toLocaleString([locales [, options]]);

参数

locales Optional

A string with a BCP 47 language tag, or an array of such strings. For the general form and interpretation of the locales argument, see the Intl page. The following Unicode extension key is allowed:

nuThe numbering system to be used. Possible values include:"arab","arabext","bali","beng","deva","fullwide","gujr","guru","hanidec","khmr","knda","laoo","latn","limb","mlym","mong","mymr","orya","tamldec","telu","thai","tibt".options Optional

An object with some or all of the following properties:

localeMatcherThe locale matching algorithm to use. Possible values are "lookup" and "best fit"; the default is "best fit". For information about this option, see the Intl page.styleThe formatting style to use , the default is "decimal".
  • "decimal" for plain number formatting.
  • "currency" for currency formatting.
  • "percent" for percent formatting
  • "unit" for unit formatting
unitThe unit to use in unit formatting, Possible values are core unit identifiers, defined in UTS #35, Part 2, Section 6. A subset of units from the full list was selected for use in ECMAScript. Pairs of simple units can be concatenated with "-per-" to make a compound unit. There is no default value; if the style is "unit", the unit property must be provided.unitDisplayThe unit formatting style to use in unit formatting, the defaults is "short".
  • "long"(e.g.,16 litres)
  • "short"(e.g.,16 l)
  • "narrow"(e.g.,16l)
currencyThe currency to use in currency formatting. Possible values are the ISO 4217 currency codes, such as "USD" for the US dollar,"EUR" for the euro, or "CNY" for the Chinese RMB — see the Current currency & funds code list. There is no default value; if the style is "currency", the currency property must be provided.currencyDisplayHow to display the currency in currency formatting. Possible values are "symbol" to use a localized currency symbol such as €,"code" to use the ISO currency code,"name" to use a localized currency name such as "dollar"; the default is "symbol".useGroupingWhether to use grouping separators, such as thousands separators or thousand/lakh/crore separators. Possible values are true and false; the default is true.

The following properties fall into two groups:minimumIntegerDigits,minimumFractionDigits, and maximumFractionDigits in one group,minimumSignificantDigits and maximumSignificantDigits in the other. If at least one property from the second group is defined, then the first group is ignored.

minimumIntegerDigitsThe minimum number of integer digits to use. Possible values are from 1 to 21; the default is 1.minimumFractionDigitsThe minimum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number and percent formatting is 0; the default for currency formatting is the number of minor unit digits provided by the ISO 4217 currency code list(2 if the list doesn't provide that information).maximumFractionDigitsThe maximum number of fraction digits to use. Possible values are from 0 to 20; the default for plain number formatting is the larger of minimumFractionDigits and 3; the default for currency formatting is the larger of minimumFractionDigits and the number of minor unit digits provided by the ISO 4217 currency code list(2 if the list doesn't provide that information); the default for percent formatting is the larger of minimumFractionDigits and 0.minimumSignificantDigitsThe minimum number of significant digits to use. Possible values are from 1 to 21; the default is 1.maximumSignificantDigitsThe maximum number of significant digits to use. Possible values are from 1 to 21; the default is 21.notationThe formatting that should be displayed for the number, the defaults is "standard"
  • "standard" plain number formatting
  • "scientific" return the order-of-magnitude for formatted number.
  • "engineering" return the exponent of ten when divisible by three
  • "compact" string representing exponent, defaults is using the "short" form
    • "compactDisplay" used only when notation is "compact", takes either "short"(default)or "long"

返回值

TypedArray.prototype.toLocaleString() - JavaScript TypedArray 对象

一个字符串,表明该类型化数组内的元素。

例子

使用toLocaleString

var uint = new Uint32Array([2000, 500, 8123, 12, 4212]);

uint.toLocaleString(); 
// 如果在de-DE区域设置下运行
// "2.000,500,8.123,12,4.212"

uint.toLocaleString('en-US');
// "2,000,500,8,123,12,4,212"

uint.toLocaleString('ja-JP', { style: 'currency', currency: 'JPY' });
// "¥2,000,¥500,¥8,123,¥12,¥4,212"

鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com

免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)

图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)