[图片] 有好的解决方法吗
downloadFile通过流下来的xls提示文件格式和扩展名不匹配,求大神指导下?const filePath = `${ wx.env.USER_DATA_PATH}/${projectName}.xls`; wx.downloadFile({ url: "http://192.168.100.33:8096/devled" + "/api/project/exportAioResult?myNo=" + id, header: { "Authorization": userInfo ? JSON.parse(userInfo).token : "eyJhbGciOiJIUzUxVs_C0x1_r_u1nTY6gQPJYPclBh-Mg" }, filePath: filePath, responseType: "arraybuffer", //注意这里的responseType success: function (res) { console.log(res) wx.openDocument({ filePath: res.filePath, fileType: 'xls', success: function () { console.log('打开文档成功') }, fail: function () { console.log('打开失败'); } }) } }) 结果 [图片] [图片] 点是可以在PC上打开,手机打不开
04-30找到原因了 是因为,微信后台不允许 https://api.weixin.qq.com 作为合法域名,所以必须要后台处理
wx.login 中不能使用 setData 进行赋值的问题[图片]https://developers.weixin.qq.com/minigame/dev/api/open-api/login/wx.login.html
2020-05-14