functionhandleInitDate(){Date.prototype.format=function(format){var o ={"M+":this.getMonth()+1,//month"d+":this.getDate(),//day"h+":this.getHours(),//hour"m+":this.getMinutes(),//minute"s+":this.getSeconds(),//second"q+": Math.floor((this.getMonth()+3)/3),//quarter"S":this.getMilliseconds()//millisecond}if(/(y+)/.test(format)) format = format.replace(RegExp.$1,(this.getFullYear()+"").substr(4- RegExp.$1.length));for(var k in o)if(newRegExp("("+ k +")").test(format))format = format.replace(RegExp.$1,RegExp.$1.length ==1? o[k]:("00"+ o[k]).substr((""+ o[k]).length));return format;}}
使用示例
全局引入调用后
var currentDate =newDate();
console.log(currentDate.format("yyyy-MM-dd hh:mm:ss"));// 格式化为年-月-日 时:分:秒的形式
我有一个需求:在订单表里面查询指定时间的订单数据,如果要是没有订单的话,需要展示当天日期和数据,数据为0
先看一下效果: 话不多说,直接上SQL
SELECTdate_range.date AS 日期,COUNT( oco.id ) AS 总订单…