gpt4 book ai didi

node.js - 检查网站是否可联系

转载 作者:搜寻专家 更新时间:2023-10-31 22:30:58 25 4
gpt4 key购买 nike

我想检查特定网站是否在线。该网站的名称来自输入字段并通过邮寄方式发送。

有一个用于 ping 主机的 NPM 模块,但这对我帮助不大。我需要一个使用参数检查 URL 的解决方案,例如:hostname.com/category

如有建议,我将不胜感激。

最佳答案

只需发出 HTTP 请求即可。

var http = require('http');
http.get('http://example.com/category', function (res) {
// If you get here, you have a response.
// If you want, you can check the status code here to verify that it's `200` or some other `2xx`.

}).on('error', function(e) {
// Here, an error occurred. Check `e` for the error.

});

关于node.js - 检查网站是否可联系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27332994/

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