假设当前日期2018-01-10,获取一个月前的当前日期2017-12-10
function theDataBeforeOneMonth(){//获取当前日期、时间
var date = new Date();
//获取当前年份,注意要加引号,否则组合结果是非日期格式
var Y = date.getFullYear()+'';
var M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1)+'';//获取当前月份
var D = (date.getDate() < 10 ? '0' + (date.getDate()) : date.getDate())+'';
//判断当前月份是否是1月,是1月则Y-1取上年年份,M为12取上年12月份
if(M==="01"){
Y=Y-1;
M="12";
}
return Y+'-'+M+'-'+D;
}
postman.setEnvironmentVariable("monthBefore", theDataBeforeOneMonth());