微信小程序wx.downloadFile下载文件,temp返回的是json而不是.xlsx?
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: '下载失败' , }) }
|
2 回复