你这个问题解决了吗是什么原因呢 我上传图片也出现了这个问题
小程序 打卡 拍照上传,为啥偶尔会出现 黑图?小程序 打卡 拍照上传,为啥偶尔会出现 黑图? 代码 const ctx = wx.createCameraContext() ctx.takePhoto({ quality: 'high', success: (res) => { wx.uploadFile({ url: App.data.host_path + '********', filePath: res.tempImagePath, name: 'file', formData: { 'rosterId': that.data.userid }, success(res) { let dares = JSON.parse(res.data) wx.hideLoading({ complete: (res_hide) => { console.log(dares.code) if (dares.code == '0000') { wx.showModal({ title: '提示', content: '签到成功', confirmText: '查看', cancelText: '不查看', success: (res) => { if (res.confirm) { } else { return } } }) } else { wx.showToast({ title: dares.msg, icon: 'none', duration: 2000 }) } }, }) }, fail: (res) => { wx.hideLoading({ complete: (res_hide) => { wx.showToast({ title: '上传失败', icon: 'none', duration: 2000 }) }, }) } }) } }) 代码 运行 没有异常 后台获取图片偶尔出现这种 [图片]
2022-08-24[图片]
wx.navigateBack(Object object)返回上一页 ,怎么会一直跳到首页?wx.navigateTo(Object object) 保留当前页面,跳转到应用内的某个页面。再返回,不知道什么原因一直都跳到首页。 [图片] [图片]
2021-08-25