gpt4 book ai didi

Node.js - 如何检查 http 请求中 URL 的状态

转载 作者:搜寻专家 更新时间:2023-10-31 23:29:42 24 4
gpt4 key购买 nike

我正在尝试运行一个使用 http 服务器模块检查 URL 状态的简单应用。

基本上这是简单的 http 服务器:

require('http').createServer(function(req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('URL is OK');
}).listen(4000);

现在,我想使用此部分检查 URL 的状态:

var request = require('request');
request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log("URL is OK") // Print the google web page.
}
})

所以基本上我想启动 node ,打开浏览器并显示带有文本“URL 可以”的内容。然后每 10 分钟刷新一次。

非常感谢任何帮助。

最佳答案

node 的一般策略是,您必须在回调中放置任何依赖于异步操作结果的内容。在这种情况下,这意味着等待发送您的回复,直到您知道谷歌是否启动。

为了每 10 分钟刷新一次,您需要在服务的页面中写入一些代码,可能使用 <meta http-equiv="refresh" content="30"> (30 秒),或 Preferred method to reload page with JavaScript? 中的一种 javascript 技术

var request = require('request');
function handler(req, res) {
request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log("URL is OK") // Print the google web page.
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('URL is OK');
} else {
res.writeHead(500, {'Content-Type': 'text/html'});
res.end('URL broke:'+JSON.stringify(response, null, 2));
}
})
};

require('http').createServer(handler).listen(4000);

关于Node.js - 如何检查 http 请求中 URL 的状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19051393/

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