实例演示fetch , async, await 的用法

编辑: admin 分类: 电脑知识 发布时间: 2023-06-14 来源:互联网
演示fetch , async, await 的用法1. fetch的用法
  1. //fetch api
  2. function getData2(ele){
  3. fetch('https://jsonplaceholder.typicode.com/todos/20')
  4. .then(function(response){
  5. //将请求的结果转为json,将第二步的结果json,返回到第三步进一步处理
  6. return response.json()
  7. })
  8. .then(function(json2){
  9. console.log(json2)
  10. ele.insertAdjacentHTML('afterend',`<li>${json2.title}</li>`)
  11. })
  12. }
2. async, await 的用法
  1. // async 异步的
  2. // 将fetch链式的异步书写方式,改成传统的可读性更好的同步的风格
  3. async function getData(ele){ //前面加了关键词async 就是异步函数了 是promise
  4. const url = 'https://jsonplaceholder.typicode.com/todos/10'
  5. try{
  6. //1. 发起异步请求,等待返回结果的响应对象
  7. const res = await fetch(url)
  8. //2.如果响应成功,将响应结果转为json
  9. const result = await res.json()
  10. //3.对响应结果,进行处理,渲染到页面中
  11. console.log(result);
  12. ele.insertAdjacentHTML('afterend',`<li>${result.title}</li>`)
  13. }catch{
  14. console.error('请求失败');
  15. }
  16. }

通过实操,基本熟悉两种方式跨域调用数据的用法.

【本文由: 阜宁网站制作 http://www.1234xp.com/funing.html 复制请保留原URL】