微信小程序new Date().getTime()失效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序new Date().getTime()失效相关的知识,希望对你有一定的参考价值。
参考技术A ios系统对js中的new Date()方法有格式要求错误的写法 let dt = new Date("2020-09-03 19:57")
正确的写法 let dt = new Date("2020/09/03 19:57")
转化的方式
let tm = "2020-09-03 19:57"
let dt = new Date(tm.replace(/-/g,'/'))
System.currentTimeMillis()和new Date().getTime()比较
获取时间毫秒数时System.currentTimeMillis()方法比new Date().getTime()效率高, 因为new Date().getTime()方法调用的System.currentTimeMillis()
Date类的构造函数直接调用的System.currentTimeMillis()获取fastTime毫秒值:
getTime()方法在cdate为空(Date对象在进行无参构造创建对象时cdate默认为null)的情况下直接返回fastTime.
以上是关于微信小程序new Date().getTime()失效的主要内容,如果未能解决你的问题,请参考以下文章
new Date(date).getTime()不兼容iphone
new Date().getTime()和System.currentTimeMillis()对比
System.currentTimeMillis() vs. new Date() vs. Calendar.getInstance().getTime()