我正在使用pdf.js查看器在网页中显示PDF文件。在服务器端,我有一个文件夹查看器。在这个文件夹里面我有脚本&内容文件夹。
在服务器脚本中,
// Configuration
app.configure(function(){
app.use(express.static(__dirname + '/scripts'));
});
所以如果我放localhost/viewer.html来显示观众。
要打开我放localhost/viewer.html?file=sample.pdf的文件。如果viewer.html& sample.pdf在同一个文件夹中。但我想从脚本文件夹
中的viewer.html的内容文件夹加载输入文件答案 0 :(得分:2)
最简单的方法是设置具有不同根路径的多个static middlewares:
app.use('/', express.static(__dirname + '/scripts'));
app.use('/content', express.static(__dirname + '/content'));
请注意,您必须重写PDF查看器才能从http://yourhost/pdf/
而不是http://yourhost/
下载文件。