let that = this;
let reqUrl = app.globalData.api + '/file/getOrderFile.do';
wx.downloadFile({
url: reqUrl,
success (res) {
const filePath = res.tempFilePath;
if (res.statusCode === 200) {
wx.saveFile({
tempFilePath: res.tempFilePath,
success (res) {
console.log(res)
const savedFilePath = res.savedFilePath
wx.openDocument({
fileType: 'xlsx',
showMenu:true,
filePath: savedFilePath,
success: function (res) {
console.log(res)
}
})
}
})
}
}
})
在开发工具也能打开,只有ios报这个错误,我这个let reqUrl = app.globalData.api + '/file/getOrderFile.do'; 是后端返回的一个文件流。求解答
请提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。