Intl RelativeformatJavaScript 日期格式化工具
Intl Relativeformat 可以格式化相關(guān)字符串的 JavaScript 日期。
示例代碼:
var rf = new IntlRelativeFormat('en-US');
var posts = [
{
id : 1,
title: 'Some Blog Post',
date : new Date(1426271670524)
},
{
id : 2,
title: 'Another Blog Post',
date : new Date(1426278870524)
}
];
posts.forEach(function (post) {
console.log(rf.format(post.date));
});// => "3 hours ago"http:// => "1 hour ago"評(píng)論
圖片
表情
