微信小程序wx.downloadFile下载文件,接口被拦截了怎么处理?
wx.downloadFile({ url:'https://xxxxx' , success:function(resData) { const tempFilePath = resData.tempFilePath wx.saveFile({ tempFilePath: tempFilePath, success(res) { const savedFilePath = res.savedFilePath wx.openDocument({ filePath: savedFilePath, success: function (res) { debugger console.log('打开文档成功') }, }); } }) }, fail:function(err) { wx.showToast({ title: '下载失败', }) } }) |
