我看了网上的各种例子;但是,我似乎无法正确解析LinkedIn时间戳。
今年的Inpeticualy。
我在这里缺少什么?
1352236307000
function parseTwitterDate(epoch) {
var newDate = new Date();
newDate.setTime(epoch * 1000);
dateString = newDate.toUTCString();
return dateString;
};
发表Sun,30 Aug 44820 04:23:20 GMT
答案 0 :(得分:1)
简单地将此作为参数传递给日期构造函数:
new Date(1352236307000).toLocaleString()
答案 1 :(得分:1)
以毫秒为单位。只差1000。