1
2
3
4
5
6
|
wx.showToast({
title: '成功',
icon: 'fail',
duration: 2000,
success: func
})
|
1
2
3
4
5
6
7
8
|
wx.showToast({
title: '成功',
icon: 'fail',
duration: 2000,
success: res => {
func()
}
})
|
使用以上两种语句都会“马上”执行func
, WHY?
因为只要成功弹出了窗口就会调用success, 所以如果要在duration
毫秒后执行func
, 代码如下:
1
2
3
4
5
6
|
wx.showToast({
title: '成功',
icon: 'fail',
duration: 2000,
})
setTimeout(func, 2000)
|