一、下载地址
http://mozilla.github.io/pdf.js/getting_started/#download
下载稳定版
二、文件说明
1、下载解压后文件内容如下
2、直接打开viewer.html,加载出来的是空白的,pdf没有加载出来
3、部署到tomcat上,启动项目,打开viewer.html,可以得到一个默认的pdf
三、打开自己需要展示的pdf页面
1、传入pdf文件file=url(文件路径)
注:file所携带的参数就是你要展示的pdf文件的路径
2、展示页面如下
四、跨域问题报错
1、跨域问题报错解决方案
注释viewer.js中如下代码1564——1566行
if (origin !== viewerOrigin && protocol !== 'blob:') {
throw new Error('file origin does not match viewer\'s');
}