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


Javascript Intl.DateTimeFormat.prototype.formatRangeToParts()用法及代码示例


Intl.DateTimeFormat.prototype.formatRangeToParts() 方法是 JavaScript 中的一个内置方法,用于允许 locale-specific 标记代表 DateTimeFormat 格式化程序生成的格式化日期范围的每个部分。

用法:

Intl.DateTimeFormat.prototype.formatRangeToParts(startDate, endDate)

参数:此方法接受上面提到和下面描述的两个参数:

  • startDate:此参数保存范围的开始日期。
  • endDate:此参数保存范围的结束日期。

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

范例1:



Javascript


const startDate = new Date(Date.UTC(1997, 5, 30, 3, 3, 3));
const endDate = new Date(Date.UTC(2073, 7, 6, 11, 0, 0));
 
let result = new Intl.DateTimeFormat("hi", {
    hour:'numeric',
    minute:'numeric'
});
 
console.log(result.formatRange(startDate, endDate));
let val = result.formatRangeToParts(startDate, endDate);
console.log(val[0]);
console.log(val[2]);
console.log(val[3]);
console.log(val[8]);

输出:

"30/6/1997, 8:33 am - 6/8/2073, 4:30 pm"
Object { type:"day", value:"30", source:"startRange" }
Object { type:"month", value:"6", source:"startRange" }
Object { type:"literal", value:"/", source:"startRange" }
Object { type:"minute", value:"33", source:"startRange" }

范例2:

Javascript


let geek1 = new Date(Date.UTC(1997, 5, 30, 10, 0, 0));
let geek2 = new Date(Date.UTC(2020, 2, 26, 11, 0, 0));
let geek3 = new Date(Date.UTC(2073, 6, 23, 10, 0, 0));
 
let result1 = new Intl.DateTimeFormat("en", {
    year:'2-digit',
    month:'numeric',
    day:'numeric',
    hour:'numeric',
    minute:'numeric'
});
console.log(result1.format(geek1));
console.log(result1.formatRange(geek1, geek2));
console.log(result1.formatRange(geek1, geek3));
 
let result2 = new Intl.DateTimeFormat("hi", {
    year:'numeric',
    month:'short',
    day:'numeric'
});
console.log(result2.format(geek1));
console.log(result2.formatRange(geek1, geek2));
console.log(result2.formatRange(geek1, geek3));

输出:

"month" "6" "startRange"
"literal" "/" "startRange"
"day" "30" "startRange"
"literal" "/" "startRange"
"year" "1997" "startRange"
"literal" ", " "startRange"
"hour" "8" "startRange"
"literal" ":" "startRange"
"minute" "33" "startRange"
"literal" " " "startRange"
"dayPeriod" "AM" "startRange"
"literal" " - " "shared"
"month" "8" "endRange"
"literal" "/" "endRange"
"day" "6" "endRange"
"literal" "/" "endRange"
"year" "2073" "endRange"
"literal" ", " "endRange"
"hour" "4" "endRange"
"literal" ":" "endRange"
"minute" "30" "endRange"
"literal" " " "endRange"
"dayPeriod" "PM" "endRange"

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

  • 谷歌浏览器
  • 网页视图安卓
  • chrome 安卓
  • Opera 安卓




相关用法


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