如何在正确的日期对象中转换时间戳?
4选择意见:
发布于 2016-05-13 09:03:31
接受的解决方案是,如果谈论UNIX时间戳到JavaScript对象
var date = new Date(parseInt(jsonDate.substr(6)));
https://stackoverflow.com/questions/37205580
相似问题