uniapp使用记录
uniapp ios小程序时间格式转化问题
// 例如一个'-'的时间格式 const end='2021-06-10 12:00:00' const int = new Date(end).getTime() // iOS系统上就会转化失败得到null,安卓能正常转化 // 解决方法:将时间格式转化为'/' const transEnd = end.replace(/-/g,'/') // 将时间格式转化为'/' const int = new Date(transEnd).getTime() // iOS系统、安卓都能正常转化了 |
showToast延迟无效
uni.showToast({ title: res.message, duration: 2000, success: () => { setTimeout(() => { uni.navigateBack({}); },2000) } }); |