打字稿获取时间戳记的日期

时间:2018-10-12 17:07:42

标签: javascript typescript date timestamp

label.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: 85.0)

输出为:

console.log("----  " + this.sessionData.getUser().getLastQuizDone());
console.log(new Date(this.sessionData.getUser().getLastQuizDone()).getDay());

问题:如何从---- Timestamp(seconds=1539208800, nanoseconds=0) profile.ts:73:6 NaN 获取日期/月份/年份?

1 个答案:

答案 0 :(得分:0)

好像getLastQuizDone会返回某种Timestamp实例,而不是实际的时间戳。您可以从中获得实际的时间戳吗?

可能可行:

new Date(this.sessionData.getUser().getLastQuizDone().seconds * 1000).getDay()