javascript如何在远程服务器中打开pdf文件

时间:2017-03-28 05:37:54

标签: javascript pdf get remote-server

我想使用javascript在窗口中打开pdf文件。该文件位于远程服务器中,路径为/bd1/sgacp/sigcp/tempECALCP/survey15es.pdf。

我写了以下函数

paper.on('link:disconnect', function(linkView, evt, disconnectedFromView, magnetElement, type) {
    console.log('link:disconnect', type, disconnectedFromView, magnetElement);
});

paper.on('link:connect', function(linkView, evt, connectedToView, magnetElement, type) {
    console.log('link:connect', type, connectedToView, magnetElement);
});

如何在远程服务器中写入文件的URL?

路径为/bd1/sgacp/sigcp/tempECALCP/survey15es.pdf

1 个答案:

答案 0 :(得分:0)

相同来源的Ajax限制禁止您这样做。 不要害怕:只需使用这样的iframe:

<iframe src="REMOTESERVERPATH/bd1/sgacp/sigcp/tempECALCP/survey15es.pdf"></iframe>