微信小程序将字符串转为时间戳
var timestamp = new Date(‘2014-04-23 18:55:49:123’).getTime();
console.log(timestamp);
同样的代码为什么在微信开发者工具上能获取到具体的值,在真机上却获取到null
var timestamp = new Date(‘2014-04-23 18:55:49:123’).getTime();
console.log(timestamp);
同样的代码为什么在微信开发者工具上能获取到具体的值,在真机上却获取到null