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 …)

相关文章

IE6是一个非常老旧的网页浏览器,虽然现在很少人再使用它,但...
PHP中的count()函数是用来计算数组或容器中元素的个数。这个...
使用 AJAX(Asynchronous JavaScript and XML)技术可以在不...
Ajax(Asynchronous JavaScript and XML)是一种用于改进网页...
本文将介绍如何通过AJAX下载Excel文件流。通过AJAX,我们可以...
Ajax是一种用于客户端和服务器之间的异步通信技术。通过Ajax...