微信小程序日期 时间转时间戳实现代码

前端之家收集整理的这篇文章主要介绍了微信小程序日期 时间转时间戳实现代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_502_0@日期转换成时间戳:new Date('2018-09-03 15:46:13').getTime()

@H_502_0@示例代码

<pre class="has">
console.log(new Date('2018-09-03 15:46:13'))

@H_502_0@这个打印结果应该是时间戳,但是部分机型会返回 undefined 或者 Invalid date;

@H_502_0@解决方法

<pre class="has">
console.log(new Date('2018-09-03 15:46:13'.replace(/-/g,"/")))

@H_502_0@意思是把 2018-09-03 15:46:13 改为 2018/09/03 15:46:13 

@H_502_0@最后:

<pre class="has">
console.log(new Date('2018-09-03 15:46:13'.replace(/-/g,"/")).getTime())

@H_502_0@完成

原文链接:https://www.f2er.com/weapp/58149.html

猜你在找的微信小程序相关文章