• fetch-axios简述和简单用法


    网络请求

    fetch

    官方文档

    在项目开发过程中,我们向服务端发送请求,一般会使用三种方式, XMLHttpRequest(XHR)FetchjQuery实现的AJAX,第三方包axios。其中, XMLHttpRequest(XHR)Fetch是浏览器的原生APIjqueryajax其实是封装了XHR(这种使用起来就比较复杂了,不推荐使用),而fetch和axios都是封装了promise来处理异步。

    fetch api是浏览器内置的api,和axios不同。

    基于promise的封装,形成的异步数据请求的标准,兼容性不好

    chrome浏览器 103.0.5060.134(正式版本) (64 位) 控制台输入fetch.

    Snipaste_2022-08-01_22-06-21

    兼容性

    Snipaste_2022-08-01_22-20-36

    fetch使用

    ​
    fetch('url', {
        method: 'get'
        //options
    }).then(function(response) {
        //返回请求的数据
    }).catch(function(err) {
        // 出错了;使用catch进行捕获
    ​
    });
    ​
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    使用fetch发送get请求

    ​
            fetch("/json/text.json").then(res => res.json()).then(res => {
              console.log(res);
            }).catch(err => console.log(err))
    
    • 1
    • 2
    • 3
    • 4

    注意:

    第一个then里的res返回的是状态码和响应头,第二个里面返回的是数据,使用catch捕获异常。

    get请求也可以传参:url?username=zx&password=xxxx

    使用fetch发送post请求

    发送application/x-www-form-urlencoded
            fetch("/user.json", {
              method: "post",
              headers: {
                "Content-type": "application/x-www-form-urlencoded"
              },
              body: "username=zx&password=123456"
            }).then(res => res.json).then(res => {
              console.log(res);
            }).catch(err => {
              console.log(err);
            })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    真如你所见,我在发起请求时,options并不是必须的,所以在上个例子使用fetch发送get请求里,我并没有给配置options。一般来说options是用来设置调用时的Request对象,使用方法可以参考上面的例子。

    • method - 支持 GET, POST, PUT, DELETE, HEAD
    • url - 请求的 URL
    • headers - 对应的 Headers 对象
    • body - 请求参数(JSON.stringify 过的字符串或’name=jim\u0026age=22’ 格式)
    发送application/json
            fetch("", {
              method: "post",
              headers: {
                "Content-type": "application/json"
              },
              body: JSON.stringify({ "name": "zs", "password": "123456" })
            }).then(res => res.json).then(res => {
              console.log(res);
            }).catch(err => console.log(err))
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    注意:

    因为fetch默认是get请求,所以这里要标清楚请求方式。

    同时也要包含,post.body里的内容,比如请求头,请求体等。

    axios

    官方文档

    优点:异步无刷新进行局部数据的更新,用户体验好 缺点:需要三方包引入

    使用axios发送get请求

            axios.get("/day3/json/mi1.json").then(res => {
    ​
              this.list = res.data.data.sections
              // console.log(this.list);
            }).catch(err => {
              console.log(err);
            })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
  • 相关阅读:
    软件测试碎碎念:进大厂容易,做自己却很难
    xargs如何保留文本中的引号
    内网渗透学习-环境搭建
    java项目:基于Springboot+Vue+Element实现汽车租赁系统
    Cocos2d Opengl2.1 升级到 opengl3.3
    霍夫曼(Huffman)编码算法详解之C语言版
    Spring系列12: `@Value` `@Resource` `@PostConstruct` `@PreDestroy` 详解
    等级保护2.0安全体系框架新升级,山石网科助力企业网络安全建设
    jenkins插件迁移
    8 张图 | 剖析 Eureka 的首次同步注册表
  • 原文地址:https://blog.csdn.net/liyuchenii/article/details/126111390