日期对象
Posted zlf1914
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期对象相关的知识,希望对你有一定的参考价值。
Date
日期对象的值就是当前的系统时间
创建日期对象--构造函数
new Date() Thu Feb 13 2020 14:49:52 GMT+0800 (中国标准时间)
Date.toLocalString() 字符串本地化 2020/2/13 下午2:51:35
Date.getYear() 1900距离当前的年份差值。--次要
Date.getFullYear() 获取当前年份(四位的) 2020
Date.getMonth() 获取月份 国外的月份表示0-11
Date.getDate() 获取当前是几号
Date.getDay() 获取星期(0-6 星期日->0 星期一->1 星期二->2...)
Date.getHours() 时
Date.getMinutes() 分
Date.getSeconds() 秒
设置日期
利用字符串一次性设置年月日时分秒。--不设置星期 invalid Date:无效的日期
字符串设置日期不会自动进位。
new Date(‘2020-2-18 12:12:12‘)
new Date(‘2020,2,18 12:12:13‘)
new Date(‘2020.2.18 12:12:14‘)
new Date(‘2020/2/18 12:12:15‘)
new Date(‘2020218 12:12:15‘)
利用数字一次性设置年月日时分秒。--不设置星期
new Date(2020, 3, 20, 12, 13, 14);
利用日期对象提供的方法设置年月日时分秒。--不设置星期
具有自动进位
获取:getFullYear/getMonth/getDate/getHours/getMinutes/getSeconds
设置:setFullYear/setMonth/setDate/setHours/setMinutes/setSeconds
以上是关于日期对象的主要内容,如果未能解决你的问题,请参考以下文章
为啥python中日期时间对象的json序列化不能为日期时间对象开箱即用