博客列表 >异步函数请求

异步函数请求

kong
kong原创
2023年12月17日 12:40:41141浏览
  1. //异步请求 fetch().then().then()
  2. // function getData(){
  3. // fetch('https://jsonplaceholder.typicode.com/todos/')
  4. // .then(response => response.json())
  5. // .then(json => console.log(json))
  6. // }
  7. // 异步函数 async await
  8. async function getData(){
  9. //请求url
  10. let url = 'https://jsonplaceholder.typicode.com/todos/'
  11. // 等待请求的结果,在进行后面的操作
  12. const response = await fetch(url);
  13. //响应成功以后,将进行转为json处理
  14. const res = await response.json();
  15. console.log(res)
  16. }
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议