提前感谢大家。
我正在使用 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());
};
如何通过代理服务器发送此请求?
谢谢,
礼萨。