如何从 JavaScript 获取 HTTP 状态
如何使用 JavaScript 获取另一个站点的 HTTP 状态代码?
How to get HTTP status code of another site with JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 JavaScript 获取另一个站点的 HTTP 状态代码?
How to get HTTP status code of another site with JavaScript?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
尝试以下 JavaScript 代码:
Try the following piece of javascript code:
您必须使用 XMLHTTPRequest 来获取 HTTP 状态代码。
这可以通过向服务器发出 HEAD 请求来获取所需的 url 来完成。
创建一个 XMLHTTPRequest 对象 - xhr,并执行以下操作。
请参阅此处了解更多详细信息。
You will have to use XMLHTTPRequest for getting the HTTP status code.
This can be done by making a HEAD request to the server for the required url.
Create an XMLHTTPRequest object - xhr, and do the following
See here for more details.
由于同源策略,您无法直接使用 AJAX 执行此操作。
您必须在服务器上设置代理服务,然后使用您要检查的地址对该代理服务进行 ajax 调用。从服务器代理中,您可以使用 cURL 或任何您喜欢的工具来检查状态代码并将其返回给客户端。
You can't do this with AJAX directly because of the same origin policy.
You'd have to set up a proxy service on your server then make ajax calls to that with the address you want to check. From your server proxy you can use cURL or whatver tool you like to check the status code and return it to the client.
我假设 JavaScript 和 JQuery 可以大大简化 AJAX 请求,就像这样。
I assume JavaScript, with JQuery, which simplifies AJAX requests alot, like this.