真机调试无法下载文件怎么回事?
我用wx.saveVideoToPhotosAlbum和wx.saveImageToPhotosAlbum在真机模式都能把视频和图片保存成功
但是用wx.saveFile在真机模式下载任何文件都不能成功 这种怎么回事?代码在下面 大家可以拿去试一下
down(){ wx.downloadFile({ url: 'https://api.chillstep.top/download/20191105/1.txt' , success: function (res) { console.log(res.tempFilePath) var tempFilePath = res.tempFilePath wx.saveFile({ tempFilePath: tempFilePath, success(res) { console.log(res) }, fail(res) { console.log(res) }, complete(res) { console.log(res) } }) }, fail: function (res) { wx.showModal({ title: '下载失败' , content: '请联系管理员' , }) }, complete: function (res) { }, }) } |