我想使用 Moment.js 获取 Unix 时间戳。我可以在 moment.js 中找到许多将时间戳转换为日期的函数。我知道我可以通过使用以下 JavaScript 函数轻松获取 unix 时间戳:Math.floor(new Date().getTime()/1000).
Math.floor(new Date().getTime()/1000)
但我想使用 Moment.js 来获得相同的结果。moment.js 中是否有任何直接函数来获取当前时间戳?
要以秒为单位查找 Unix 时间戳:
moment().unix()
文档是你的朋友。:)