1 回答
- 最新
- 投票最多
- 评论最多
0
【以下的回答经过翻译处理】 下面是如何获取当前时代的秒数和毫秒数的方法:
const epoch = new Date('1970-01-01T00:00:00Z'); const currentDate = new Date();
const timestamp_ms = currentDate - epoch; const timestamp = Math.floor(timestamp_ms / 1000);
GameSparks().Logging().Info("Current timestamp, in seconds: " + timestamp);
相关内容
- 已提问 4 个月前
- AWS 官方已更新 1 个月前
- AWS 官方已更新 2 年前
- AWS 官方已更新 2 年前