https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Date
有关Date
返回格式
Sun Oct 10 2021 00:00:00 GMT+0800 (中国标准时间)
- new Date() 无参数
获取当前时间 - new Date(value) 传入时间戳
传入一个时间戳
一个 Unix 时间戳(Unix Time Stamp),它是一个整数值,表示自 1970 年 1 月 1 日 00:00:00 UTC(the Unix epoch)以来的毫秒数,忽略了闰秒。请注意大多数 Unix 时间戳功能仅精确到最接近的秒。 - new Date(dateString) 传入一个合规的日期字符串
表示日期的字符串值。该字符串应该能被 Date.parse() 正确方法识别(即符合 IETF-compliant RFC 2822 timestamps 或 version of ISO8601)。
有关Date.parse()
对于Date.parse(dateString)// 例 Date.parse("2013-4-23") // 1366646400000 Date.parse('Aug 9, 1995') // 807897600000
- 多个参数 如new Date(1991, 9, 17)
获取时间戳
Date.parse(new Date());
后三位是000 不是毫秒级
new Date()获取当前时间字符串 这个字符串是一个dateString
Date.parse需要传入一个dateString
new Date().valueOf();
毫秒级
获取到的时间戳除以1000就可获得Unix时间戳
new Date().getTime();
毫秒级
获取到的时间戳除以1000就可获得Unix时间戳
比较时分大小/获取今天0点、24点的时间戳
https://juejin.cn/post/6844903695004483597
-
比较时分大小可以用setHours传入时分,返回时间戳,之后比较时间戳大小即可
可用
Date.setHours(hour,min,sec,millisec)
因为使用new Date(year, monthIndex [, day [, hours [, minutes [, seconds [, milliseconds]]]]]);
还要传入year month数据,使用setHours会简洁很多返回值:一个时间戳
-
获取0点 24点的时间戳
和上面一样
时间格式转换代码分析(vue-element-admin)
export function parseTime(time, cFormat) {
if (arguments.length === 0 || !time) {
return null
}
const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}'
let date
if (typeof time === 'object') {
date = time
} else {
if ((typeof time === 'string')) {
if ((/^[0-9]+$/.test(time))) {
// support "1548221490638"
time = parseInt(time)
} else {
// support safari
// https://stackoverflow.com/questions/4310953/invalid-date-in-safari
time = time.replace(new RegExp(/-/gm), '/')
}
}
if ((typeof time === 'number') && (time.toString().length === 10)) {
time = time * 1000
}
date = new Date(time)
}
const formatObj = {
y: date.getFullYear(),
m: date.getMonth() + 1,
d: date.getDate(),
h: date.getHours(),
i: date.getMinutes(),
s: date.getSeconds(),
a: date.getDay()
}
const time_str = format.replace(/{([ymdhisa])+}/g, (result, key) => {
const value = formatObj[key]
// Note: getDay() returns 0 on Sunday
if (key === 'a') { return ['日', '一', '二', '三', '四', '五', '六'][value ] }
return value.toString().padStart(2, '0')
})
return time_str
}
测试
第一个参数:
- object类型 date变量为传入的值
- 为数字字符串 parseInt转成数字 date变量为new Date(时间戳)
- 不为数字字符串 把-替换为/ 因为safari不支持-连接 , date变量为类似new Date(2022/11/20)
- 为number类型 且为10位 是unix时间戳 date变量为new Date(time*1000) ; 为number类型不为10位 date变量为new Date(time)
不过注意padstart有兼容问题
momentjs/dayjs
https://momentjs.bootcss.com/
https://dayjs.fenxianglu.cn/category/
其他
https://juejin.cn/post/7016187931631190029 服务器/数据库的时间和本地时间是不同的时区
https://juejin.cn/post/6996557818081837087 有关utc和中国标准时间
https://juejin.cn/post/7025629497122619399 JS UTC时间转为本地时间