我已经设置了一个脚本来创建我们应用的网页截图。 它运行完美,一切都很好直到我遇到一个破碎网址的图像:
"<img src='http://testserver.our.intranet/fetch/image/373e8fd2339696e2feeb680b765d626e' />"
我已经设法在使用下面的6秒之后打破脚本,之前它只是永远循环。
但是,是否可以忽略网络请求(AKA
从DOM
中取出图像),然后继续创建没有图像的拇指,(或注入图像丢失图像! )
var page = require('webpage').create(),
system = require('system'),
address, output, size;
if (system.args.length < 3 || system.args.length > 5) {
phantom.exit(1);
} else {
address = system.args[1];
output = system.args[2];
page.viewportSize = { width: 640, height: 640 };
page.zoomFactor = 0.75;
page.clipRect = { top: 10, left: 0, width: 640, height: 490 };
try{
page.open(address, function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit();
} else {
window.setTimeout(function () {
page.render(output);
phantom.exit();
}, 200);
}
});
} finally{
setTimeout(function() {
console.log("Max execution time " + Math.round(6000) + " seconds exceeded");
phantom.exit(1);
}, 6000);
}
}
答案 0 :(得分:61)
PhantomJS 1.9引入了一个新设置resourceTimeout
,它可以控制请求在取消之前需要多长时间。除此之外,如果/当请求超时,则会触发onResourceTimeout
事件。
这是一个代码片段,说明了上述所有内容:
var page = require('webpage').create();
page.settings.resourceTimeout = 5000; // 5 seconds
page.onResourceTimeout = function(e) {
console.log(e.errorCode); // it'll probably be 408
console.log(e.errorString); // it'll probably be 'Network timeout on resource'
console.log(e.url); // the url whose request timed out
phantom.exit(1);
};
page.open('http://...', function (status) {
...
}
不幸的是,现在这些选项的文档很少。我必须通过GitHub discussions和PhantomJS source code才能找到它们。