uni.downloadFile({
url: val+'&access_token='+that.access_token,
header: {
'Content-Type':'application/vnd.ms-excel',
'User-Agent': 'pan.baidu.com', // 这里是要添加的请求头
},
success: function(res) {
console.log('res111=>',res)
console.log('res.tempFilePath=>',res.tempFilePath)
}
})
因为对接百度网盘所以请求头里要加 'User-Agent': 'pan.baidu.com',别的文件都没问题,但是上传xlxs拿回来的文件地址就是.bin,修改了'Content-Type':'application/vnd.ms-excel'或者application/vnd.openxmlformats-officedocument.spreadsheetml.sheet都不行
修改response content-type才行的
百度网盘改