😍 😍 😍 😍 😍 😍 😍 😍 🌹 🌹 🌹 🌹 🌹 🌹 🌹 🌹
电脑用downloadFile没问题,真机测试就有问题了,下载不了[图片] 那些域名什么之类的都已经配好了,图片上传查看是没问题的,文件下载就真机有问题 ViewFile:function(e){ let url = e.currentTarget.dataset.url; console.log(url); let that=this; if (url == undefined || url == null) { util.showError("参数有误,请和管理员联系!"); return; } wx.downloadFile({ url: url, success(res){ console.log(res); if(res.statusCode==200){ const tempFilePath=res.tempFilePath wx.openDocument({ filePath: tempFilePath, success: function (res) { }, fail:function(res){ util.showError('打开失败,文件不存在') } }) } }, fail:function(res){ console.log(res); util.showError('文件下载失败,请和管理员联系'); } }) }
2020-09-25