Javascript 可以 Ping 服务器吗?
在努力监控服务器可用性时,开发人员遇到了页面加载时间飙升至 60 的困境仅八台服务器的秒数。为了寻求解决方案,他们考虑了通过 JavaScript 从客户端 ping 服务器的可能性。
幸运的是,一位足智多谋的人分享了一种使用 Image 对象的巧妙技术。此函数启动 ping:
function Pinger_ping(ip, callback) { if(!this.inUse) { this.inUse = true; this.callback = callback this.ip = ip; var _that = this; this.img = new Image(); this.img.onload = function() {_that.good();}; this.img.onerror = function() {_that.good();}; this.start = new Date().getTime(); this.img.src = "http://" + ip; this.timer = setTimeout(function() { _that.bad();}, 1500); } }
此方法依赖于 Image 对象来检查服务器可用性。事实证明,该机制对于各种服务器类型和端口都是有效的。然而,据报道其可靠性已经下降,Chrome 可能不再支持它,从而导致错误。
以上是JavaScript 可以 Ping 服务器吗?这种方法的可靠性如何?的详细内容。更多信息请关注PHP中文网其他相关文章!