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


Javascript Intl.ListFormat.prototype.format()用法及代码示例


Intl.ListFormat.prototype.format() 方法是 JavaScript 中的一个内置方法,它返回一个带有列表的 language-specific 表示的字符串。

用法:

listFormat.format([list]);

参数:此方法接受上述和以下描述的单个参数:

  • list:此参数包含一个可迭代对象,例如一个 Array。

返回值:此方法返回一个 language-specific 格式的字符串,表示列表的元素。

下面的例子说明了 JavaScript 中的 Intl.ListFormat.prototype.format() 方法:



范例1:


<script>
const gfg = ['Geeks1', 'Geeks2', 'Geeks3', 'Geeks4'];
  
const result1 = new Intl.ListFormat('en', 
    { style:'long', type:'conjunction' });
console.log(result1.format(gfg));
  
const result2 = new Intl.ListFormat('db', 
    { style:'short', type:'disjunction' });
console.log(result2.format(gfg));
  
const result3 = new Intl.ListFormat('en', 
    { style:'narrow', type:'unit' });
console.log(result3.format(gfg));
</script>

输出:

"Geeks1, Geeks2, Geeks3, and Geeks4"
"Geeks1, Geeks2, Geeks3, or Geeks4"
"Geeks1 Geeks2 Geeks3 Geeks4"

范例2:


<script>
const gfg = ['Geeks1', 'Geeks2', 'Geeks3', 'Geeks4'];
  
const result1 = new Intl.ListFormat('hi', 
    { style:'long', type:'conjunction' });
console.log(result1.format(gfg));
  
const result2 = new Intl.ListFormat('hi', 
    { style:'short', type:'disjunction' });
console.log(result2.format(gfg));
  
const result3 = new Intl.ListFormat('hi', 
    { style:'narrow', type:'unit' });
console.log(result3.format(gfg));
</script>

输出:

支持的浏览器: Intl.ListFormat.prototype.format() 方法支持的浏览器如下:

  • 谷歌浏览器
  • Opera



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 JavaScript | Intl.ListFormat.prototype.format() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。