PhantomJS - onResourceTimeout()



在请求的资源超时时将调用此回调。即 settings.resourceTimeout 回调正在使用时。

它包含一个参数,即 request,其中包含以下详细信息 -

  • Id - 请求的资源数

  • Method - http 方法

  • URL - 请求的资源的 URL

  • Time - 包含请求日期的 Date 对象

  • Headers - http 头的列表

  • ErrorCode - 错误的错误代码

  • ErrorString - 错误的文本消息

语法

它的语法如下 -

page.onResourceTimeout = function(request) {}

示例

var wpage = require('webpage').create(); 
wpage.onResourceTimeout = function(request) { 
   console.log("Data from request:"); 
   console.log(JSON.stringify(request)); 
} 
wpage.settings.resourceTimeout = '3'; 
wpage.open('https://127.0.0.1/tasks/request.html', function(status) { 
}); 

上述程序生成以下输出

Data from request: 
{"errorCode":408,"errorString":"Network timeout onresource.",
"headers":[{"name":"Accept","value":"text/html,application/xhtml+xml ,
application/xml;q=0.9,*/*;q=0.8"},{"name":"User-Agent","value":"Mozilla/5.0 
(Windows NT 6.2; WOW64) AppleWebKit/538.1 (KHTML, like Gecko) 
PhantomJS/2.1.1 Safari/538.1"}],"id":1,
"method":"GET","time":"2017-0507T13:32:12.545Z",
"url":"https://127.0.0.1/tasks/request.html" 
}
phantomjs_webpage_module_events_callbacks.htm
广告