标签:ESS post请求 func status header blob 文件 传参 后台
const params = {
name:‘123‘,
idlist: [‘111‘,‘222‘]
}
let url= ‘你的借口名称全名!包括https://www.xxx.com?access_token=‘ + token;
// url需要带上token
let xhr = new XMLHttpRequest();
xhr.open(‘POST‘, url, true);
xhr.responseType = "blob";
xhr.setRequestHeader("client_type", "DESKTOP_WEB");
xhr.setRequestHeader(‘Content-Type‘, ‘application/json‘);
xhr.onload = function () {
if (this.status == 200) {
var blob = this.response;
var objecturl = URL.createObjectURL(blob);
window.location.href = objecturl;
}
}
xhr.send(JSON.stringify(params)); // 发送请求携带参数
标签:ESS post请求 func status header blob 文件 传参 后台
原文地址:https://www.cnblogs.com/wangjiahui/p/13344883.html