在 JavaScript 中,可以使用
new Date()
来获取当前时间,返回一个日期对象。
如果需要将其转换为 JSON 格式,可以使用
JSON.stringify()
将其转换为字符串。
let currentTime = new Date();
let currentTimeJSON = JSON.stringify(currentTime);
console.log(currentTimeJSON);
输出类似于:
"2022-10-20T08:20:05.123Z"
注意:你也可以使用date.toJSON()来转化为json格式。