需求
后端接口返回pdf文件流,实现新窗口预览pdf。
解决方案
把后端返回的pdf文件流转为blob路径,利用浏览器直接预览。
具体实现步骤
1、引入axios
javascript
import axios from 'axios';
2、创建预览方法(具体使用时将axios的请求路径替换为你的后端下载地址)
javascript
export async function previewFile(data: IAttachment, callback?: () => void) {
try {
const response = await axios.get(config.VITE_APP_API_URL_PREPROD + '/file/downloadFile', {
params: {
filepath: data.filePath
},
responseType: 'blob'
});
let pdfUrl = window.URL.createObjectURL(new Blob([response.data], { type: "application/pdf" }));
window.open(pdfUrl, "_blank");
const newWindow = window.open(pdfUrl, '_blank');
if (newWindow) {
newWindow.onload = () => {
newWindow.focus();
};
} else {
// 如果新窗口被阻止,提示用户
ElMessage.warning($t('请允许弹出窗口以预览文件'));
}
} catch (error) {
console.error('Error preview file:', error);
}
}
3、在你所需要的地方调用previewFile方法
javascript
import { previewFile } from "@/utils";
<el-button type="primary" @click="previewFile(file)">导出已选</el-button>