Node.js http.get

时间:2011-08-22 16:55:15

标签: javascript node.js proxy

我有以下代码请求Google.com主页并将页面数据发送回客户端的Iframe。

 var options = {
    host: 'www.google.com',
    port: 80,
    path: '/',
    method: 'GET'
  };

  var req = http.get(options, function(res) {
    var pageData = "";
    res.setEncoding('utf8');
    res.on('data', function (chunk) {
      pageData += chunk;
    });

    res.on('end', function(){
      response.send(pageData)
    });
  });

然而,iframe中的所有图片和CSS都被破坏了?如何保存图像和CSS?

2 个答案:

答案 0 :(得分:11)

最简单的解决方案是添加< base href =“http://google.com/”>到HTML。最好在头部,'< head>'上的字符串替换也是如此并替换为'< head>< base href =“http://google.com/”>'

答案 1 :(得分:3)

让客户端获取Google页面会不会更容易?

<html>
<head>
<script>
window.onload = function () {
  var nif = document.createElement("iframe");
  nif.width = 850;
  nif.height = 500;
  nif.src = "http://www.google.de";
  nif.appendChild( document.createTextNode("no iframe support") );
  document.body.appendChild(nif);
};
</script>
</head>
<body>
<h1>IFRAME</h1>
</body>
</html>