请问前端如何保存 PK\u2000... string类型的 zip文件?

请问前端如何保存 PK\u2000... string类型的 zip文件?
通过axios 获取 zip文件

  var config = {
        method: "post",
        url: "http://192.168.111.69:18089/file",
        headers: {
          Authorization: "Bearer 37451430-161b-407f-b23a-10577e436d78",
        },
        responseType: "blob",
      };

      axios(config).then((res) => {
        console.log(`res111`, res, typeof res);
      });

返回的res 是一堆字符串
image.png
前端怎么保存

阅读 1.5k
推荐问题