Jaxer和HTTP代理请求

时间:2010-03-14 04:04:30

标签: proxy http-proxy jaxer

提前感谢所有人。

我正在使用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());
};

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

谢谢,

礼。

1 个答案:

答案 0 :(得分:1)

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

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

礼。