gpt4 book ai didi

phantomjs - 如何控制 PhantomJS 跳过下载某种资源?

转载 作者:行者123 更新时间:2023-12-03 06:00:31 27 4
gpt4 key购买 nike

phantomjs 有配置 loadImage,

但我想要更多,

如何控制phantomjs跳过下载某种资源,

比如css等...

=====

好消息:已添加此功能。

https://code.google.com/p/phantomjs/issues/detail?id=230

要点:

page.onResourceRequested = function(requestData, request) {
if ((/http:\/\/.+?\.css/gi).test(requestData['url']) || requestData['Content-Type'] == 'text/css') {
console.log('The url of the request is matching. Aborting: ' + requestData['url']);
request.abort();
}
};

最佳答案

已更新,正在工作!

从 PhantomJS 1.9 开始,现有的答案不起作用。您必须使用此代码:

var webPage = require('webpage');
var page = webPage.create();

page.onResourceRequested = function(requestData, networkRequest) {
var match = requestData.url.match(/wordfamily.js/g);
if (match != null) {
console.log('Request (#' + requestData.id + '): ' + JSON.stringify(requestData));
networkRequest.cancel(); // or .abort()
}
};

如果使用abort()而不是cancel(),则会触发onResourceError。

您可以look at the PhantomJS docs

关于phantomjs - 如何控制 PhantomJS 跳过下载某种资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9486377/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com