gpt4 book ai didi

javascript - 使用 Javascript 将 blob 转换为 .doc、.docx、.xls 或 .txt 以在浏览器中查看而无需下载

转载 作者:行者123 更新时间:2023-12-02 22:07:50 25 4
gpt4 key购买 nike

我可以通过以下代码将 blob 转换为 pdf 附件以便在浏览器中查看而无需下载

 var ieEDGE = navigator.userAgent.match(/Edge/g);
var ie = navigator.userAgent.match(/.NET/g); // IE 11+
var oldIE = navigator.userAgent.match(/MSIE/g);
//var bytes = new Uint8Array(response); //use this if data is raw bytes else directly pass resData
var blob = new window.Blob([response], { type: 'application/pdf' });

if (ie || oldIE || ieEDGE) {
window.navigator.msSaveBlob(blob, fileName);
}
else {
var fileURL = URL.createObjectURL(blob);
window.open(fileURL);
}

这适用于 Chrome 和 Firefox 中的 pdf。但对于 .doc、.docx、.xlx,尽管我提供了适当的 mime 类型,但它仍在下载。 (即对于 .doc 文件,我使用 application/msword 等)。

请注意,我正在从安全的 .net core api 获取 .doc、.docx、.xlx 数据。有没有其他方法可以在浏览器中查看word、excel文件而无需下载。

最佳答案

这是完全正常的行为,默认情况下您无法在浏览器中查看 Word 或 Excel 文档,这就是刚刚下载文件的原因。这取决于浏览器如何处理文件。旧版 Internet Explorer 也可能只是下载 PDF,而不是显示它。

关于javascript - 使用 Javascript 将 blob 转换为 .doc、.docx、.xls 或 .txt 以在浏览器中查看而无需下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59660384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com