uniapp 时间戳 获取问题

最近uniapp 试水 差点溺水 简单粗暴分享给大家 :

一、获取时间戳

正常浏览器new Date()

uniapp 中

	let time=new Date()
	console.log(time,"time")  // {} time
	let time1=new Date().getTime()
	console.log(time1,"time1") // 1.6512e+12 time1 

1.6512e+12 是科学计数法 new Date().getTime().toFixed() 转成13位的时间戳

二、时间戳转年月日

正常浏览器

uniapp 时间戳 获取问题_第1张图片

uniapp 中

let t=new Date().getTime().toFixed()
console.log(t,"t")  // 1651199198673 t
console.log( typeof t)  // string
let time=new Date(Number(t))  
console.log(time)   // {}

三、最后的方案

请大神  moment.js

附链接:Moment.js 中文网

uni-app中使用moment_一个菜鸡,的博客-CSDN博客_uniapp使用moment

终于上岸了 ^0^

uniapp 时间戳 获取问题_第2张图片

 

你可能感兴趣的:(uni-app,moment.js,javascript,前端,vue.js)