在 moment.js 中,可以使用
moment().valueOf()
来获取当前时间戳,该函数返回一个数值类型,表示当前时间距离 Unix 元年(1970 年 1 月 1 日 00:00:00 GMT)的毫秒数。
你也可以使用
moment().unix()
来获取当前时间戳,该函数返回一个数值类型,表示当前时间距离 Unix 元年的秒数。
var currentTimestamp = moment().valueOf(); // 获取当前时间戳(毫秒数)
console.log(currentTimestamp);
var currentTimestampInSeconds = moment().unix(); // 获取当前时间戳(秒数)
console.log(currentTimestampInSeconds);
希望这能帮到你。