gpt4 book ai didi

phantomjs - 如何从 page.open 发出的请求中查看 HTTP 状态代码?

转载 作者:行者123 更新时间:2023-12-04 14:26:40 25 4
gpt4 key购买 nike

我有一个包含以下内容的 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 页面),您应该将其视为 resources[0].status 中返回的第一个请求。 .在 onResourceReceived 处理程序中,您可以为尝试从中获取 http 代码的资源添加更多过滤器。

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

关于phantomjs - 如何从 page.open 发出的请求中查看 HTTP 状态代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30221204/

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