小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.showLoading
为什么一闪就结束了 没有使用hideloading
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
有没有使用wx.showToast之类的api
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
有没有使用wx.showToast之类的api
wx.showToast({
title: '上传的图片大小不超过5mb',
icon: 'none',
duration: 2000,
mask: true
})
return false;
}else{
console.log(1111)
wx.showLoading({
title: '上传中',
})
console.log(2222)
wx.uploadFile({
url:'http://123.156.231.206:8000/API/uploadpaymentimg',
filePath: tempFilePaths,
name: 'file',
header:{
'content-type':'application/x-www-form-urlencoded',
'token':wx.getStorageSync('token'),
},
formData: {
file: tempFilePaths,
},
success (res){
res['data'] = JSON.parse(res.data);
console.log(res);
if(res.statusCode == 200){
wx.showToast({
title: res.data.msg,
})
that.setData({
uploadVoucher:{
show:true,//弹出框显示
fileList:res.data.data[0].url,
id:that.data.uploadVoucher.id
},
})
// 隐藏加载动画
}
},
})
}