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


JavaScript Intl PluralRules()用法及代码示例


JavaScript Intl PluralRules() 构造函数用于创建 Intl.PluralRules 对象。该构造函数是使用新关键字。如果我们创建没有 new 关键字的构造函数,它将给出 TypeError。

用法:

new Intl.PluralRules(loc, opt)

参数:

  • loc: 它是一个字符串或字符串数组,包含参数的一般形式和解释
  • opt: 它是一个包含以下属性的对象语言环境匹配器并输入和最大有效位数ETC.

返回值:PluralRules 对象

示例 1:此示例为英语和阿拉伯语创建 PluralRules 对象。

Javascript


const eng = new Intl.PluralRules("en"); 
const ar = new Intl.PluralRules("ar-EG"); 
  
console.log(eng.select(1)); 
console.log(eng.select(2)); 
console.log(eng.select(6)); 
  
console.log(ar.select(1)); 
console.log(ar.select(2)); 
console.log(ar.select(6));

输出:

one
other
other
one
two
few

示例 2:此示例使用 PluralRules 对象添加后缀。

Javascript


var x = [12, 32, 45, 11]; 
var pRules = new Intl.PluralRules("en", {type: "ordinal"}); 
  
var Mapping = { 
    "one": "st", 
    "two": "nd", 
    "few": "rd", 
    "other": "th", 
} 
  
var suffixArray = x.map((item)=>{ 
    var type = pRules.select(item); 
    var ending = Mapping[type]; 
    return `${item}${ending}` 
}) 
  
console.log(suffixArray)

输出:

(4) ['12th', '32nd', '45th', '11th']

支持的浏览器:

  • Chrome
  • Edge
  • Firefox
  • Opera
  • Safari

我们有完整的 JavaScript Intl 方法列表可供检查,请阅读 JavaScript Intl Reference 文章



相关用法


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