接受一个参数,类型为Object对象(默认为空对象)
此对象包含两个属性,一个时间戳(默认为当前时间),一个输出时间的格式(默认为"yyyy-MM-dd hh:mm:ss")
function timeFilter(json){
function toDou(n){
return n<10?'0'+n:''+n;
}
var json = json || {};
var timestamp = json.time || new Date().getTime();
var oDate = new Date(timestamp);
var model = json.model || 'yyyy-MM-dd hh:mm:ss';
return model.replace(/y+/,oDate.getFullYear()).replace(/M+/,toDou(oDate.getMonth()+1)).replace(/d+/,toDou(oDate.getDate())).replace(/h+/,toDou(oDate.getHours())).replace(/m+/,toDou(oDate.getMinutes())).replace(/s+/,toDou(oDate.getSeconds()));
}