当前位置:   article > 正文

ts中根据一个日期获取n天前后的日期或时间戳_ts 昨天、前天

ts 昨天、前天

第一种:获取n天前后的日期

curDate: Date;

this.curDate = new Date();

//n天前的日期

this.curDate.setDate(this.curDate.getDate()-n);


// n天后的日期

this.curDate.setDate(this.curDate.getDate()+n);




第二种:获取n天前后的日期转换为时间戳

curDate: any;

this.curDate = new Date();

//n天前的日期时间戳

this.curDate.setDate(this.curDate.getDate()-n);

this.curDate = moment(this.curDate).unix();


//n天后的日期时间戳

this.curDate.setDate(this.curDate.getDate()+n);

this.curDate = moment(this.curDate).unix();








声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/321579
推荐阅读
相关标签
  

闽ICP备14008679号