把 uni.request放到uni.showModal里面 不执行
古德猫宁one
- 发布:2021-03-22 13:45
- 更新:2021-03-22 13:46
- 阅读:1181
古德猫宁one (作者)
uni.showModal({
title: '提示',
content: '确定要解除标签么?',
success: function(res) {
if (res.confirm) {
console.log("解除绑定>>>>>" + id);
uni.showToast({
title: "正在解绑...",
icon: 'loading',
duration: 2000,
mask: true
});
uni.request({
url: this.websiteUrl + '/appWork/boxRemoveTag',
method: 'POST', //请求方式 或GET
data: {
id: id
},
header: {
'content-type': 'application/x-www-form-urlencoded',
'X-AUTH-TOKEN': this.tocken
},
success: res => {
if (res.data.code == 200) { //如果coded等于200
console.log(res)
setTimeout(() => {
uni.showToast({
icon: 'none',
position: 'bottom',
title: '解绑成功'
});
}, 2000);
// this.sttodos = 2;
console.log("可以绑定");
this.message[index].rfid = '';
} else {
console.log(res)
setTimeout(() => {
uni.showToast({
icon: 'none',
position: 'bottom',
title: res.data.msg
});
}, 2000);
}
},
});
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
古德猫宁one (作者)
弹窗里面的
''''
uni.showToast({
title: "正在解绑...",
icon: 'loading',
duration: 2000,
mask: true
});
''''
是执行的,可是下面的请求数据不执行
2021-03-22 13:47
1***@qq.com
回复 古德猫宁one: 您好 请问您的问题解决了嘛 遇到了类似的问题
2021-10-27 09:57