前言今天有个接口字段需求,要写一个今天及前几天的日期传过去;
在网上找了下都木有什么比较好的方案;就自己写了一个。
因为技术栈就是NG2+TS2+WEBPACK,这里的代码需要一定的TS2及ES6的基础
代码 /**
* @param {number} range
* @param {string} [type]
* @memberOf VehicleOverviewCompon
static getNowDate(): string {
const date = new Date();
let month: string | number = date.getMonth() + 1;
let s...
SimpleDateFormat format = new SimpleDateFormat("yyyy-M-dd HH:mm:ss"); //造型随你喜欢
Long time=null;
//timestamp为需要转换的
时间戳
time=new Long(String.valueOf(timestamp));
//转换成字符串
String timestr=format.format