微信小程序开发工具设置日期格式 - 2021.07.20 02:01:56 格式示例
在微信小程序开发工具中,可以使用dateFormat函数来设置日期格式。以下是一个示例代码:
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
var hour = date.getHours();
var minute = date.getMinutes();
var second = date.getSeconds();
var formattedDate = year + '.' + month + '.' + day + ' ' + hour + ':' + minute + ':' + second;
console.log(formattedDate);
执行以上代码后,formattedDate变量将会包含格式为"2021.07.20 02:01:56"的日期字符串。你可以根据需要修改日期的格式。
原文地址: https://www.cveoy.top/t/topic/pJX2 著作权归作者所有。请勿转载和采集!