我有一个用webvisu创建的页面(不是我自己创建的)(如果这样说是正确的),我需要在我的WebApp中显示该页面(在iframe中)。我正在使用代理服务器来获取该页面,但是当我获取该页面时,其HTML代码如下所示:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<script language="javascript" src="webvisu.js"></script>
<script language="javascript" src="browsercontrol_ext0.js"></script>
</head>
<body onload="new Webvisu('background', 'foreground', true)">
<div style="position: absolute; left: 0px; top: 0px;">
<canvas id="background" width="700" height="500" style="position: absolute; left: 0px; top: 0px; z-index: 100;">
Webvisu not supported due to missing browser feature HTML5-Canvas
</canvas>
<canvas id="foreground" width="700" height="500" style="position: absolute; left: 0px; top: 0px; z-index: 200;">
Webvisu not supported due to missing browser feature HTML5-Canvas
</canvas>
</div>
</body>
</html>
我看到当我将网站扔给代理时,在这里出现错误:<body onload="new Webvisu('background', 'foreground', true)">
,这表明在这里无法找到文件:<script language="javascript" src="webvisu.js"></script>
。
如何在我的代理请求中也获得这些文件?