微信小程序中的modal的使用
以清除系统缓存为例:
clearStorage: function() {
wx.showModal({
title: '确认要清除',
content: '清除缓存会删除浏览历史和收藏及个人资料',
success: function(res) {
console.log(res)
if (res.confirm) {
wx.clearStorage()
app.initStorage()
wx.showToast({
title: '清除成功',
icon: 'success',
duration: 1500
})
}
}
})
}