/**
*
* @param {*} time 参数 时间戳
* @param {*} type 类型 自己定义的获取时间的标识
*/
export function formatDateTime(time, type) {
// console.log(time)
const date = new Date(time)
// 年
const Y = date.getFullYear()
// 月
let M = date.getMonth() + 1
M = M < 10 ? '0' + M : M
// 日
let D = date.getDate()
D = D < 10 ? '0' + D : D
// 时
let h = date.getHours()
h = h < 10 ? '0' + h : h
// 分
let m = date.getMinutes()
m = m < 10 ? '0' + m : m
// 秒
let s = date.getSeconds()
s = s < 10 ? '0' + s : s
if (type === 'YYYY-MM-DD') {
return Y + '-' + M + '-' + D
} else if (type === 'MM-DD hh:mm') {
return M + '-' + D + ' ' + h + ':' + m
} else if (type === 'hh:mm') {
return h + ':' + m
} else {
return Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s
}
}
获取当前时间戳 new Date().getTime()
Math.random()*10 //生成0-10的随机数,包含0,不包含10
Math.ceil(Math.random()*10) //ceil向上取整,即生成1-10的随机整数,取0的概率极小
Math.floor(Math.random()*10) //floor向下取整,即生成0-9的随机整数
Math.round(Math.random()*10) //round四舍五入,即生成0-10的随机整数数,取0和10的概率是其他数的一半
//取[min, max)之间的随机整数
Math.floor(Math.random() * (max - min) ) + min
//取[min, max]之间的随机整数
Math.floor(Math.random() * (max - min + 1) ) + min
通过Math函数生成随机数