gpt4 book ai didi

javascript - 有没有办法使用浏览器从要求授权 header 的 RESTful Web 服务下载文件

转载 作者:行者123 更新时间:2023-12-03 10:35:24 27 4
gpt4 key购买 nike

我目前正在尝试使用浏览器作为基于 REST 的服务,使用 ajax 请求下载文件。

$('#button').click(function (url)
{
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.setRequestHeader('Authorization', "Bearer " + token);
xhr.onload = function(e) {
alert('success')
//what should I do here to get file downloaded using browser
};
xhr.send();
}););

最佳答案

您可以使用下面的代码。

$('#button').click(function (url)
{
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.setRequestHeader('Authorization', "Bearer " + token);
xhr.onload = function(e) {
alert('success')
var file=e.target.files[0]; //you can get file this way.
};
xhr.send();
}););

关于javascript - 有没有办法使用浏览器从要求授权 header 的 RESTful Web 服务下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29010163/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com