还是提示 Refused to get unsafe header "content-disposition"
时间: 2024-01-11 08:02:20 浏览: 191
Vue axios 跨域请求无法带上cookie的解决
如果还是提示 `Refused to get unsafe header "content-disposition"`,那么可能是服务器端设置了不安全的响应头。这种情况下,可以在客户端进行二次获取,使用 `uni.request` 方法发送请求,并在请求头中添加 `responseType: 'arraybuffer'`,以便正确解析服务器的响应头。
修改后的代码如下:
```javascript
const uploadVideo = () => {
// 提醒用户下载中
uni.showToast({
title: "下载中",
icon: "loading"
})
// 1 将远程文件下载到小程序的内存中
uni.request({
url: state.videourl,
responseType: 'arraybuffer',
success: (res) => {
let blob = new Blob([res.data], {type: 'video/mp4'});
let url = URL.createObjectURL(blob);
//保存视频到系统相册
uni.saveVideoToPhotosAlbum({
filePath: url,
success: function() {
uni.showToast({
title: "保存成功",
icon: "none"
});
return
},
fail: function() {
uni.showToast({
title: "保存失败,请稍后重试",
icon: "none"
});
return
}
});
}
})
}
```
这样就可以正常下载视频并保存到系统相册了。
阅读全文