uniapp 获取当前时间戳
方法一:
// 通过Date对象的getTime方法获取当前时间戳
const timestamp = new Date().getTime();
console.log(timestamp);
方法二
// 使用uniapp提供的工具函数获取当前时间戳
const timestamp = uni.$getDate().getTime();
console.log(timestamp);
最近访问时间:2024-10-09 13:22:56