1

提前感谢大家。

我正在使用 Jaxer.sandbox 并提出请求就好了。我希望这些请求通过我的 http 代理(例如 squid)。这是我目前正在为我工​​作的代码。

window.onload = function() {
//the url to scrape
var url = "http://www.cnn.com/";

//our sandboxed browser
var sandbox = new Jaxer.Sandbox();

//open optons
var openOptions = new Jaxer.Sandbox.OpenOptions();
openOptions.allowJavaScript = false;
openOptions.allowMetaRedirects = false;
openOptions.allowSubFrames = false;
openOptions.allowSubFrames = false;
openOptions.onload = function() {
    //do something onload
};

//make the call
sandbox.open(url, null, openOptions);

//write the response
Jaxer.response.setContents(sandbox.toHTML());
};

如何通过代理服务器发送此请求?

谢谢,

礼萨。

4

1 回答 1

1

我没有得到任何答复。:|

我们最终通过在 jaxer 框架中创建我们自己的自定义 sandbox.openProxy() 方法来解决这个问题。:)

礼萨。

于 2010-03-16T03:40:53.233 回答