如何通过代码
将当前日期转换为时间戳axios(users).then(function(response) {
const globalData = response;
console.log(globalData)
});
是否可以将c.getTime转换为时间戳
这是我的代码,但我不知道如何将其转换为时间戳。
答案 0 :(得分:1)
如文件中所述,
https://docs.oracle.com/javase/7/docs/api/java/util/Date.html#getTime()
getTime()
对象的函数Date
返回
从1970年1月1日00:00:00 GMT开始的时间(以毫秒为单位)
这是你想要的时间戳,所以
Date d = c.getTime();
long timestamp = d.getTime();
就足够了
答案 1 :(得分:0)
System.currentTimeMillis的()
这将返回cutrrent日期时间的时间戳
答案 2 :(得分:0)
有两种获取当前时间戳的方法。在您的代码中c.getTime()
就足够了
Date date = new Date();
long timestamp = date.getTime();
OR
long timestamp = System.currentTimeMillis();