微信小程序在苹果真机时间显示NaN
IOS系统不支持2018-08-30这样的格式的时间进行格式化
如果后端返回的数据格式是
直接显示在界面没有问题
如果要格式话 就得用new Date(),模拟器没问题,iOS真机报错
界面就会显示出问题,要在方法里转换,把-替换成其他的
const formateTime = dateStr => {
const date = new Date(dateStr.replace(/-/g,"/"))
const year = date.getFullYear()
const month = date.getMonth() + 1
const day = date.getDate() >= 10 ? date.getDate() : `0${date.getDate()}`
const hour = date.getHours() >= 10 ? date.getHours() : `0${date.getHours()}`
const minute = date.getMinutes() >= 10 ? date.getMinutes() : `0${date.getMinutes()}`
const second = date.getSeconds() >= 10 ? date.getSeconds() : `0${date.getSeconds()}`
// console.log('week',date.getHours())
return `${year}年${month}月${day}号 ${hour}:${minute}:${second}`
}
如果后端返回时间格式的字符串,用上面的就会报错
要格式化直接new Date()就行
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)