我想使用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
答案 0 :(得分:0)
相同来源的Ajax限制禁止您这样做。 不要害怕:只需使用这样的iframe:
<iframe src="REMOTESERVERPATH/bd1/sgacp/sigcp/tempECALCP/survey15es.pdf"></iframe>