phantomjs – 如何从page.open请求中查看HTTP状态代码?

我有一个phantomJS脚本,其中包含以下内容
page.open(url,function (status) {
    if (status === "fail") { /* handle failure */ }
});

状态检查有时会起作用,但即使请求返回500,状态仍将是“成功”.如何获取实际的请求状态代码

解决方法

你可以这样做:
var page = require('webpage').create(),system = require('system'),resources = [];

page.open('http://google.com',function (status) {
    console.log('Loaded with http status:',resources[0].status);
    phantom.exit();
});

page.onResourceReceived = function(response) {
    // check if the resource is done downloading 
    if (response.stage !== "end") return;
    // apply resource filter if needed:
    if (response.headers.filter(function(header) {
        if (header.name == 'Content-Type' && header.value.indexOf('text/html') == 0) {
            return true;
        }
        return false;
    }).length > 0)
        resources.push(response);
};

因此,如果您需要检查第一个浏览器请求的状态(在本例中为google的html页面),您应该将其视为资源[0] .status中返回的第一个请求.在onResourceReceived处理程序中,您可以为尝试从中获取http代码的资源添加更多过滤器.

更新:感谢@fotijr,添加了对已完成回复的检查

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...