学习记录——Fetch

1. fetch基本使用

  • fetch API是新的ajax解决方案,fetch会返回Promise
  • fetch不是ajax的进一步封装,而是原生js,没有使用XMLHttpRequest对象
  • fetch(url, options).then()
/*
  Fetch API 基本用法
      fetch(url).then()
     第一个参数请求的路径   Fetch会返回Promise   所以我们可以使用then 拿到请求成功的结果 
*/
fetch('http://localhost:3000/fdata')
    .then(function (data) {
        // text()方法属于fetchAPI的一部分,它返回一个Promise实例对象,用于获取后台返回的数据
        return data.text();
    })
    .then(function (data) {
        //   在这个then里面我们能拿到最终的数据
        console.log(data);
    });

2. fetch API中的HTTP请求

  • fetch(url, options).then()
  • HTTP协议,它给我们提供了很多的方法,如POSTGETDELETEUPDATEPATCHPUT
    • 默认的是GET请求
    • 需要在options对象中,指定对应的method:请求使用的方法
    • post和普通请求的时候,需要在options中设置请求头headersbody

2.1 GET

(1) 传统URL

fetch('http://localhost:3000/books?id=123', {
    //  get 请求可以省略不写 默认的是GET
    method: 'get',
})
    .then(function (data) {
        //  它返回一个Promise实例对象,用于获取后台返回的数据
        return data.text();
    })
    .then(function (data) {
        //  在这个then里面我们能拿到最终的数据
        console.log(data);
    });

(2) restful形式的URL

fetch('http://localhost:3000/books/456', {
    // get 请求可以省略不写 默认的是GET
    method: 'get',
})
    .then(function (data) {
        return data.text();
    })
    .then(function (data) {
        console.log(data);
    });

2.2 DELETE

删除id789的数据

fetch('http://localhost:3000/books/789', {
    method: 'delete',
})
    .then(function (data) {
        return data.text();
    })
    .then(function (data) {
        console.log(data);
    });

2.3 POST

(1) body为字符串

fetch('http://localhost:3000/books', {
    method: 'post',
    //  传递数据
    body: 'uname=lisi&pwd=123',
    //  设置请求头
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
    },
})
    .then(function (data) {
        return data.text();
    })
    .then(function (data) {
        console.log(data);
    });

(2)bodyJSON对象

fetch('http://localhost:3000/books', {
    method: 'post',
    body: JSON.stringify({
        uname: '张三',
        pwd: '456',
    }),
    headers: {
        'Content-Type': 'application/json',
    },
})
    .then(function (data) {
        return data.text();
    })
    .then(function (data) {
        console.log(data);
    });

2.4 PUT

bodyJSON对象

fetch('http://localhost:3000/books/123', {
    method: 'put',
    body: JSON.stringify({
        uname: '张三',
        pwd: '789',
    }),
    headers: {
        'Content-Type': 'application/json',
    },
})
    .then(function (data) {
        return data.text();
    })
    .then(function (data) {
        console.log(data);
    });

3. fetchAPI中响应格式

fetch来获取数据,如果响应正常返回,首先看到的是一个response对象,其中包括返回的一堆原始字节,这些字节需要在收到后,需要我们通过调用方法将其转换为相应格式的数据,比如JSONBLOB或者TEXT等等。

fetch('http://localhost:3000/json')
    .then(function (data) {
        // return data.json();   //  将获取到的数据使用 json 转换对象
        return data.text(); //  //  将获取到的数据 转换成字符串
    })
    .then(function (data) {
        // console.log(data.uname)
        // console.log(typeof data)
        var obj = JSON.parse(data);
        console.log(obj.uname, obj.age, obj.gender);
    });

4. 关注分离的设计思想

try {
    const response = await fetch(`/api1/search/users2?q=${keyWord}`);
    const data = await response.json();
    console.log(data);
} catch (error) {
    console.log('请求出错', error);
}

📘📘欢迎在我的博客上访问:
https://lzxjack.top/

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

火星飞鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值