- wx.showLoading 和 wx.showToast 同时只能显示一个
https://blog.csdn.net/henryhu712/article/details/80335351
官方
https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showLoading.html
wx.showLoading
mask:true 同步,false 为异步,就是加不加蒙版。
wx.showLoading({
title: '加载中',
mask: true
})
setTimeout(function () {
wx.hideLoading()
}, 2000)
wx.showToast
wx.showToast({
title: '成功',
icon: 'none',
duration: 2000,
})
2弹窗:showModal
https://blog.csdn.net/yingtian648/article/details/80004334
wx.showModal({
title: '删除图片',
content: '确定要删除该图片?',
showCancel: true,//是否显示取消按钮
cancelText:"否",//默认是“取消”
cancelColor:'skyblue',//取消文字的颜色
confirmText:"是",//默认是“确定”
confirmColor: 'skyblue',//确定文字的颜色
success: function (res) {
if (res.cancel) {
//点击取消,默认隐藏弹框
} else {
//点击确定
temp.splice(index, 1),
that.setData({
tempFilePaths: temp,
})
}
},
fail: function (res) { },//接口调用失败的回调函数
complete: function (res) { },//接口调用结束的回调函数(调用成功、失败都会执行)
})