云函数 日期时间问题 请各位码神赐教
已知:javascript月份 0-11 但日期是1-31啊
现象:,但为从云函数中获取时间 天数也少一天 请教是否天数在微信小程序中也是0-30的取值范围?
当前时间本地截图
云函数代码
//获取当前月份
var todayDate = new Date();
var curMonth = todayDate.getMonth();
console.log(‘今天的日期为(’ + todayDate.getFullYear() + ‘,’ + todayDate.getMonth() + ‘,’ + todayDate.getDate()+")");
云函数调用日志截图
尝试过程:
百度N次未果.
尝试更改为 var todayDate = Date(); 然后提示todayDate.getMonth(); 这句 错误提示:TypeError: todayDate.getMonth is not a function