微信小程序日期转换时间戳

微信小程序日期转换时间戳

  安卓正常,IOS需要转换

  •  微信小程序内,字符串时间转换为时间戳 如果字符串格式为 "2020-02-02 15:35:08",此时直接 new Date("2020-02-02 15:35:08") 是转换不成功的。需要将字符串中的 " - " 转换为 " / "。
var udate =  "2020-02-02 15:35:08";

//需要先将 "-" 转换为 "/";
udate = udate.replace(/-/g,'/');

猜你喜欢

转载自blog.csdn.net/qq_38880700/article/details/112546831