问题:new Date()在安卓下正常,在IOS下显示不出来。
原因:在IOS下,new Date(“2000-2-22 00:10”),返回的是undefined,因为IOS不支持这种类型格式。
解决:更换下格式:new Date(“2000/2/22”) 可以正常显示。
如果说确实要用到 new Date(“2000-2-22 00:10”) 这种格式的数据,那么我们可以借助 date-fns
的JS库
npm install date-fns
import { parse } from 'date-fns'async goUseCardCoupon(item) {// 这里存在new Date()在IOS不生效的bug,因而用到date-fns库const currentTime = new Date()const startTime = parse(item.start_time, 'yyyy-MM-dd HH:mm:ss', new Date())if (startTime > currentTime) {this.$toast.fail('该卡券暂未生效,请在有效使用时间内使用')return}
}