wx.showToast({
title: '错误:' + this.initErrMsg,
icon: 'error',
duration: 3000,
success: function () {
wx.navigateBack({
complete: (res) => {
console.log("--初始化出错, 返回上一页")
},
})
}
总是看不到提示信息, 马上就返回了.
wx.showToast({ title: '错误:' + this.initErrMsg, icon: 'error', duration: 3000, success: function () { setTimeout(function() { wx.navigateBack({ complete: (res) => { console.log("--初始化出错, 返回上一页") } }) }, 3000) } })
什么意思?
延迟执行