和你一样,传不了data参数
wx.downloadFile API,不包含 data参数,如何传参?wx.downloadFile 调这样的接口 ,[图片],如何传参?
2021-12-08wx.request({ url: _pubInf + "/bus_dep", data: _paramObj, dataType: 'json', method: 'GET', header: { 'content-type': 'application/x-www-form-urlencoded', // 默认值 'Authorization': 'Basic ' + token }, responseType: 'arraybuffer', success(res) { console.log(res.data) wx.getFileSystemManager().writeFile({ filePath: wx.env.USER_DATA_PATH + "/text.xlsx", date:res.data, encoding:"binary", success:res => { console.log(222222222222) console.log(res) wx.openDocument({ filePath: wx.env.USER_DATA_PATH + "/text.xlsx", showMenu:true, }) }, fail(_err) { console.log("请求错误",_err); } }) }, fail(_err) { console.log("请求错误",_err); } })
wx.getFileSystemManager().writeFile保存的文件打不开?[图片]后端返回的 [图片] 小程序代码 [图片] 效果 另外,postman的send and download,访问后端可以获取到表格
2021-12-08