XMLHttpRequest请求添加token

let xhr = new XMLHttpRequest();
    xhr.timeout = 0;
    var token: any = localStorage.getItem('token_mare_basic') == null ? "" : localStorage.getItem('token_mare_basic');
    xhr.open('GET', `${omsTankInfoServer}/oms/tas/exportTas?tankAreaId=` + record.id, true);
    xhr.responseType = 'blob';
    xhr.setRequestHeader("token", token)
    xhr.send();
    // 请求成功回调函数
    xhr.onload = function (e) {
      console.log(e, xhr)
      if (this.status == 200) {
        var blob = this.response;
        var filename = record?.tankAreaName + "罐区TAS组态.zip";
        var a = document.createElement('a');
        var url = URL.createObjectURL(blob);
        a.href = url;
        a.download = filename;
        document.body.appendChild(a);
        a.click();
        window.URL.revokeObjectURL(url);
      }
      else {
        message.error("接口请求失败!")
      }
    };
    // 请求结束
    xhr.onloadend = e => {
      console.log('request loadend');
    };
    // 请求出错
    xhr.onerror = e => {
      console.log('request error');
    };
    // 请求超时
    xhr.ontimeout = e => {
      console.log('request timeout');
    };

也可以封装成工具:

/**
 * 
 * @param url xmlhttprequest请求封装
 * @param responsrType 
 */
export const XMLHttpRequestUtil = (url: string, responsrType: any) => {
  let xhr = new XMLHttpRequest();
  xhr.timeout = 0;
  var token: any = localStorage.getItem('token_mare_basic') == null ? "" : localStorage.getItem('token_mare_basic');
  xhr.open('GET', url, true);
  xhr.responseType = responsrType;
  xhr.setRequestHeader("token", token)
  xhr.send();
  return xhr;
}

/**
 * 
 * @param fileName 下载链接对应的文件
 * @param blob 
 */
export const downloadHref = (fileName: string, blob: any) => {
  var a = document.createElement('a');
  var url = URL.createObjectURL(blob);
  a.href = url;
  a.download = fileName;
  document.body.appendChild(a);
  a.click();
  window.URL.revokeObjectURL(url);
}

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值