AJAX即“Asynchronous JavaScript and XML”(异步的JavaScript与XML技术)
DIEA
浏览 480回答 1
1回答
鸿蒙传说
一般来说,我们只把 XHR(XMLHttpRequest) 的请求成为 ajax。但是当 fetch 发布后,我们一般把基于 xhr 的网络请求称为 传统 ajax,用于区分 fetch(fetch 不是基于 xhr)。我们看 fetch 的描述:The Fetch API provides a JavaScript interface for accessing and manipulating parts of the HTTP pipeline, such as requests and responses. It also provides a global fetch() method that provides an easy, logical way to fetch resources asynchronously across the network.后面的意思是:跨网络异步获取资源。也许以后就没有 ajax 这种说法了。毕竟 ajax 中已经没有了 x。