微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

AJAX可以使用HTTP或HTTPS以外的协议吗?

我想知道AJAX是否可以使用HTTP或HTTPS以外的协议.
Ajax意味着 XMLHttpRequest.正如您不必将XML与XHR一起使用,您也不必使用HTTP.

Despite its name,XMLHttpRequest can be used to retrieve any type of data,not just XML,and it supports protocols other than HTTP (including file and ftp).

W3C XMLHttpRequest spec开始(重点补充):

The XMLHttpRequest object implements an interface exposed by a scripting engine that allows scripts to perform HTTP client functionality,such as submitting form data or loading data from a server. It is the ECMAScript HTTP API.

The name of the object is XMLHttpRequest for compatibility with the Web,though each component of this name is potentially misleading. First,the object supports any text based format,including XML. Second,it can be used to make requests over both HTTP and HTTPS (some implementations support protocols in addition to HTTP and HTTPS,but that functionality is not covered by this specification). Finally,it supports “requests” in a broad sense of the term as it pertains to HTTP; namely all activity involved with HTTP requests or responses for the defined HTTP methods.

HTTP和HTTPS之外的可用协议是非标准化的,因此它们取决于您正在使用的特定环境1.也就是说,所有兼容的XHR实现必须支持HTTP和HTTPS,但不需要支持任何其他特定协议.这意味着您可能会发现Internet Explorer支持

1,例如,哪个版本的浏览器(Safari vs Firefox vs Chrome vs IE vs Opera vs …),或者哪个服务器端实现(V8 vs Rhino vs …)

原文地址:https://www.jb51.cc/ajax/160186.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐