- 微信无法打开链接直接闪退怎么办?
[图片]
2021-06-18 - wx.chooseMessageFile配合wx.uploadFile问题?
wx.chooseMessageFile配合wx.uploadFile使用,出现请求出现Provisional headers are shown问题,请问大佬有解决的方法?
2020-10-26 - 怎么去调小程序跳转的提示?
[图片]大佬们,有没有什么方法啊可以去掉这个提示,小程序跳转到其他小程序
2020-06-18 - wx.uploadFile使用问题?
请问大佬们,为什么我使用wx.uploadFile上传文件时,在开发环境可以上传,有返回结果,但是在体验版本上面就没有返回结果,上传失败? // 上传文件函数 getUpload(url,type){ const _this = this; uni.showLoading({ title: '正在上传', mask:true }); uni.uploadFile({ url: `${unit.baseUrl}mvc/public/fileupload`, //接口地址 filePath: url[0], name: 'uploadFiles', methods:'POST', header: { 'content-type':'application/x-www-form-urlencoded' }, formData: { 'user': 'test' }, success: (res) => { const path = JSON.parse(res.data); console.log('上传成功',res); if(type==='image'){ _this.uploadImgPath.push(path.attachs[0].id); } uni.hideLoading(); },fail:(err)=>{ uni.showToast({ title: err, icon: 'none', duration: 2000000 }); console.log('上传失败',err); } }); },
2020-06-16 - web-view打开一个h5页面出现不支持打开非业务域名?
web-view打开一个h5页面出现不支持打开非业务域名,但是已经配置好了业务域名,其他h5页面和图片都能打开,只有这个页面打开后提示这个,然后点击返回又打开了,这是什么原因,有没有大佬遇见过?https://pt.feisuoyu.com/h5Pay/toStopPayQueryH5
2020-06-15