javascript - 在 ReactJS/Javascript 中将 Base64 转换为 PDF 文件时遇到错误

标签 javascript reactjs pdf pdf-generation blob

我正在努力在 ReactJS 中将 PDF 显示为附件。我已经设法将 base64 带到前端,但在我尝试创建 blob 对象后它不起作用,虽然它转到 Acrobat 阅读器但显示错误。请给我任何建议,因为我怎样才能正确地将 base64 转换为 pdf。

我还上传了我在 pastebin 的控制台登录时获得的 base64 代码,https://pastebin.com/W4zEXyPy

注意: 当我尝试在 https://base64.guru/ 进行维修时它显示无效的字符串和字符 (data:application/pdf;),我尝试使用 content.slice(29); 所以它将从 JVB... 开始(而不是 data:application/pdf;base64,JVBERi0xL.......)但得到同样的错误。 Link to pic of Repair Base64 atbase64guru

错误:未正确解码

  • NodeJS 后端代码 响应 API 调用

         let token = req.cookies.access_token;
             if (token) {
               let Invoice_No_Actual = req.body.invoice_Name;
               res.set("Content-disposition", "attachment; filename=" + `${__dirname}\\` + `${Invoice_No_Actual}` + `.pdf`);
               res.contentType("application/pdf");
               res.send(`data:application/pdf;base64,${new Buffer.from(data).toString("base64")}`);
             }
           });
    
  • 前端代码 API调用

     const headers = new Headers();
            headers.append("content-type", "application/json");
            headers.append("responseType", "application/pdf");
    
            const options = {
              method: "POST",
              headers,
              credentials: "include",
              body: JSON.stringify(invoice_Object),
              // body: "My HTML String",
            };
    
            const newRequest = new Request("http://localhost:5000/api/invoice-only", options);
    
            (async () => {
              const invoice_Call = await fetch(newRequest)
                .then((res) => {
                  return text1 = res.text();
                })
                .then((data) => {
                 generateFile(data, invoice_Name);
                });
            })();
          };
    
  • generateFile()函数调用前端-收到响应后


    let generateFile = (content, fileName) => {
    
        console.log("content", content); // here at console if i copy the code and use online tool(https://base64.guru/converter/decode/pdf) it shows the correct pdf

        let content1= content.slice(29);// content1 is correct base64 as if i use it online tool it correctly generate the PDF document
        const blob = new Blob([content1], { type: "application/pdf" });
        console.log(blob);
        const link = document.createElement("a");
        link.href = window.URL.createObjectURL(blob);
        link.download = fileName;
        link.click();
      };

最佳答案

一个简单的 console.log(content.slice(29)) 可以揭示您的错误。问题是 content1 变量包含一个以“VBE…”开头的字符串,而它必须以“JVBE…”开头。所以,您的错误是 slice() 函数丢弃了太多字符。

关于javascript - 在 ReactJS/Javascript 中将 Base64 转换为 PDF 文件时遇到错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63244227/

相关文章:

node.js - fetch 方法未在 React 中使用 ES6 fetch 定义

java - 拆分后 PDDocument 中的页面为空白

java - iText:将现有 PDF 的颜色更改为灰度

javascript - map 不是 this.state.items 上的函数

javascript - Ember 更复杂的例子

javascript - e.preventDefault();不停止表单提交

javascript如何获取对象属性

reactjs - 使用react-loadable加载页面的错误方法

security - 保护生成的 PDF

javascript - AngularJS:如何仅过滤具有特定 3 个字符值的项目?