在ios中日期格式显示不能为”-“,否则会出现错误,H5开发中记得使用正则规避。

1
2
3
const date = '2019-01-01'

const newDate = new Date(date.replace(/-/g, '/'))

此问题只出现在ios,安卓和PC都能识别。