pdf.js实现

springboot项目

resources/js/pdf/web/viewer.html是要被访问到的,不能被过滤器过滤。

1、前端页面

$('#proBase').click(function () {

var curWwwPath=window.document.location.href;

var pathName=window.document.location.pathname;

var pos=curWwwPath.indexOf(pathName);

var localhostPath=curWwwPath.substring(0,pos);

window.open(localhostPath+"/resources/js/pdf/web/viewer.html?file="+propertyBaseUrl);

})

其中localhostPath+"/resources/js/pdf/web/viewer.html是获取项目中pdf.js的模板;

file=后面是pdf文件url路径;

1、后端:将pdf.js文件导入到项目中,就可以完成。

pdf.js实现

上一篇:React Umi 集成 Dva框架简化数据传输流向原理篇


下一篇:viewerjs 在html打开图片或打开pdf文件使用案例