微信小程序之wx.showmodal
Posted 大熊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序之wx.showmodal相关的知识,希望对你有一定的参考价值。
1.
.
wx.showModal({ title: "2222步", content: currentCache ? "确定为自己城市添加步数吗" : "确定取消为自己城市添加步数吗?", showCancel: true, cancelText: "取消111", cancelColor: "#000", confirmText: "确定", confirmColor: "#0f0", success: function (res) { console.log(res) if (res.confirm) { // 重新设置缓存 //wx.setStorageSync(\'cache_key\', cache); // 更新数据绑定,从而切换图片 //that.setData({ //collection: currentCache //}) } } })
2...
wx.showModal({ title: "2222步", content: currentCache ? "确定为自己城市添加步数吗" : "确定取消为自己城市添加步数吗?", showCancel: false, // cancelText: "取消111", // cancelColor: "#000", confirmText: "确定", confirmColor: "#0f0", success: function (res) { console.log(res)
success: function (res) {
if (res.cancel) {
//点击取消,默认隐藏弹框
} else {
//点击确定
temp.splice(index, 1),
that.setData({
tempFilePaths: temp,
})
}
},
fail: function (res) { },//接口调用失败的回调函数
complete: function (res) { },//接口调用结束的回调函数(调用成功、失败都会执行)
} })
以上是关于微信小程序之wx.showmodal的主要内容,如果未能解决你的问题,请参考以下文章
微信小程序wx.request,wx.showToast,wx.showLoading,wx.showModal的简易封装