博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js 日期对象 31 号 setMonth 的锅
阅读量:6116 次
发布时间:2019-06-21

本文共 1322 字,大约阅读时间需要 4 分钟。

前言

需求:获取当前日期的前一个月份

当月有 31 天时,JS 日期对象 setMonth 问题

1. 一般做法

当前日期如果不是 31 号, 是没问题的,是 31 号就会有问题:

// 比如今天是 2018-09-30 号,前一个月应该是 2018-08-30 let now = new Date(new Date("2018-09-30").setMonth(new Date("2018-09-30").getMonth() - 1))console.log('now :', now.toLocaleString())// now : 2018/8/30 上午8:00:00// 比如今天是 2018-10-31 号,前一个月没有 31 号,所以结果 2018-10-01:let now = new Date(new Date("2018-10-31").setMonth(new Date("2018-10-31").getMonth() - 1))console.log('now :', now.toLocaleString())// now : 2018/10/1 上午8:00:00复制代码

2. 正确的方法:

2.1 方法一

原理: 当前时间减去当前时间的天数

function initLastMonth(date) {            let monthDate = new Date(date);            let newDate = new Date(monthDate.getTime() - 24 * 60 * 60 * 1000 * monthDate.getDate())            console.log('newDate :', newDate.toLocaleString())          return newDate}initLastMonth("2018-10-31")//  newDate : 2018/9/30 上午8:00:00复制代码

2.2 方法二

原理: setMonth 之前先 setDate(1)

function initLastMonth(date) {            const now = new Date(date);            now.setDate(1)            now.setMonth(now.getMonth() - 1)            console.log(now.toLocaleString())             return now        }initLastMonth("2018-10-31")// 2018/9/1 上午8:00:00复制代码

最后

技术文章更新地址:

全栈开发 有兴趣的朋友可以扫下方二维码关注我的公众号,我会不定期更新有价值的内容。

微信公众号:BiaoChenXuYing 分享 前端、后端开发等相关的技术文章,热点资源,全栈程序员的成长之路。

关注公众号并回复 福利 便免费送你视频资源,绝对干货。

福利详情请点击:

转载地址:http://klvka.baihongyu.com/

你可能感兴趣的文章
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
使用FMDB最新v2.3版本教程
查看>>
SSIS从理论到实战,再到应用(3)----SSIS包的变量,约束,常用容器
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>