微信小程序中解决iOS中new Date() 时间格式不兼容 在实现倒计时,根据后台返回的时间格式转换时,后台返回了时间格式为"2020-10-25 13:10:25",然后利用new Date() 转换时,ios中无法展示,安卓中显示正常 let time = "2020-11-5 15:11:11"; let temporaryTime1 = new Date(time); this.setData({ timeRemain1: temporaryTime1, })