微信小程序-IOS时间显示为NaN问题
小程序中的时间数据 new Date之后在安卓上能正常显示,但在ios系统上会显示NaN
例如:
2018-01-01
2018-01-06 00:00:00
2020-03-11T17:25:02.943
2020/03/11 17:25:02.943
time = time.replace(/-/g, '/').replace(/T/g, ' ') if (time.indexOf(".") >= 0) { time = time.slice(0, time.indexOf(".")) } let date = new Date(time);
还有IOS不支持 new Date('2020/02') 这种格式的数据,需要完整的日期new Date('2020/02/01')