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('文件下载失败,请和管理员联系'); } }) }
微信小程序下载文件失败
真机res输出信息:downloadFile:fail downloadFile protocol must be http or https"
神奇的是真机调试失败,电脑上是可以的能下载并打开
那些什么域名什么的都已经配置好,是https
我图片能正常上传下载查看,就文件下载时候,手机端不行
参考一下https://blog.csdn.net/qq_43338177/article/details/104622322看能不能解决你的问题
已解决,谢谢
路径不能是微信提供的临时路径