一、什么是时间戳?
时间戳,是计算机里存储和表示时间的基本方式。
以1970年1月1日0时0分0秒作为基准
计算当前时刻与这个基准时刻的秒数/毫秒/微妙之差
得到的这个数字就叫做时间差。
二、时间戳的作用:
一般啊,在互联网公司都会在项目种使用时间戳,时间戳主要用于清理缓存,大多数用于版本更新;
三、Date()函数的使用
javaScript中Date是对象,但也有数值的表现形式。例如:
let timestarp = Date.now() //当前时间的时间戳(数值) console.log(timestarp); //例如1651711826847
获取当前时间对象:
注意:Date是构造函数,所以需要new来实例化
let now = new Date() //当前时间日期对象 console.log(now); //例如:"2022-05-05T00:51:31.340Z"
如果在new Date()前面加上一个+,那么就变成了获取当前时间的时间戳(数值)
let a = +new Date() //当前时间的时间戳(数值) console.log(a);//例如1651711826847
转换为毫秒时间戳:
let ms = new Date().getTime() //转换为毫秒时间戳 console.log(ms); //例如:1651712215210
转换为标准格式的字符串
let iso = new Date().toDateString() //转换为标准格式的字符串 console.log(iso); //例如:Thu May 05 2022