Ajax、fetch、Axios都是用于网络请求的,但是不同维度
Ajax(Asynchronous Javascript and XML),是一种技术统称
Fetch,一个具体的浏览器原生Api
Axios,是一个基于Ajax封装的第三方库http://www.axios-js.com/
使用XMLHttpRequest实现ajax
function jAjax(url, method, callback) {
const xhr = new XMLHttpRequest()
// 第三个参数:是否异步发送请求,默认为true
xhr.open(method, url, false)
xhr.onreadystatechange = function() {
if(xhr.readyState === 4) {
if (xhr.status === 200) {
callback(xhr.responseText)
}
}
}
xhr.send()
}
fetch的基本使用
fetch(url).then(res => res.json())