vue axios请求两种方式,出现401错误,需要添加config配置

file文件的转化

const uint8Array = xxxxx;//总之先拿到uint8Array 格式的话
let mBuffer = Buffer.from(uint8Array); //转buffer
this.mBlob = new Blob([mBuffer], { type: 'application/pdf;charset=utf-8' }); //这里是转blob
this.mFile = new File([this.mBlob], 'merged.pdf', { type: this.mBlob.type }); //这里是转file
const url = window.URL.createObjectURL(this.mBlob); //这里是通过blob拿到url

传file文件参数


let formData = new FormData()
formData.append('file', this.mergePdfFile)
formData.append('param', JSON.stringify(this.arr))
// 创建一个配置对象,包含头部信息和请求参数
      const config = {
        headers: {
          Authorization: xxx, // 添加 Authorization 头部(注意空格)
          'Content-type': 'multipart/form-data' // 设置 Content-Type
        }
      }
    this.openLoading()
	axios
        .post(`${this.url}/xxx/xxx/xxxx`,
            formData,
            config
        )
        .then((res) => {
          console.log(res, "123123");
          

          this.closeLoading();
        })
        .catch(() => {
          this.$message.error("合并失败,请重新合并");
          this.closeLoading();
        });


///
 openLoading() {
      this.loading = this.$loading({
        lock: true,
        text: "正在同步,请勿操作",
        spinner: "el-icon-loading",
        background: "rgba(255, 255, 255, 0.7)",
      });
    },
    // 关闭loading层
    closeLoading() {
      this.loading.close();
    },

另一种方式

this.openLoading()
axios({
          url: `${this.url}/xxxx/${xxx}/${xxx}/xxx/xxx`,
          method: "GET",
          responseType: "blob", //划重点了,文件下载需要注意添加responseType
          headers: {
                Authorization: xxxx,
              },
        })
          .then((res) =>  {
          console.log(res, "123123");
         
          this.closeLoading();
        })
        .catch(() => {
          this.$message.error("合并失败,请重新合并");
          this.closeLoading();
        });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值