当前位置:   article > 正文

fetch和AJAX的区别_fetch是ajax吗

fetch是ajax吗

AJAX

$.ajax({
   type: 'POST',
   url: url,
   data: data,
   dataType: dataType,
   success: function () {},
   error: function () {}
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

传统AJAX指的是XMLHttpRequest,最早出现的发送后端请求的技术。

fetch

try {
  let response = await fetch(url);
  let data = response.json();
  console.log(data);
} catch(e) {
  console.log("Oops, error", e);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

fetch是基于Promise设计的,fetch不是AJAX的进一步封装,而是原生JS,没有使用XMLHttpRequest对象。

fetch和AJAX的主要区别

1.fetch返回错误的http状态码时不会reject

fetch只对网络请求报错,对400,500都当做成功的请求,服务器返回 400,500 错误码时并不会 reject,只有网络错误这些导致请求不能完成时,fetch 才会被 reject。

解决方案:

我们可以在第一层.then里面去手动抛出异常,之后就可以使用.then .catch了。

fetch(
        'http://domain/service', {
            method: 'GET'
        }
    )
    .then(response => {
        if (response.ok) {
            return response.json();
        }
        throw new Error('Network response was not ok.');
    })
    .then(json => console.log(json))
    .catch(error => console.error('error:', error));
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

2.默认情况下,fetch不会携带cookie

解决方案:

添加配置项: fetch(url, {credentials: 'include'})

3.fetch没有设置超时时间

解决方案:
使用一个promise来封装,通过setTimeout()来设置一个时间,如果超过该事件,就返回reject

    return new Promise((resolve, reject) => {
        fetch(url, init)
            .then(resolve)
            .catch(reject);
        setTimeout(reject, timeout);
    })
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里,fetch会和setTimeout同时执行,因为fetch是异步的,不会堵塞后面setTimeout的执行。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/148436
推荐阅读
相关标签
  

闽ICP备14008679号