美文网首页
使用fetch实现二进制数据流的pdf预览

使用fetch实现二进制数据流的pdf预览

作者: Bior | 来源:发表于2022-09-23 10:46 被阅读0次
    
        fetch(url, {
            method: "POST",
            body: JSON.stringify({
               'id': brId
          })
        }).then(ret => ret.blob()).then(res => {
            var blob = new Blob([res], {
              type: 'application/pdf;chartset=UTF-8'
            })
            var fileURL = URL.createObjectURL(blob)
            window.open(fileURL)
          })
    
    

    相关文章

      网友评论

          本文标题:使用fetch实现二进制数据流的pdf预览

          本文链接:https://www.haomeiwen.com/subject/pyqnortx.html