首页 > Windows开发 > 详细

fetchAPI基本用法

时间:2020-04-27 23:34:37      阅读:115      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>fetch基础用法</title>

</head>
<body>

<div id="container"></div>
<script>
    
async function getData() {
   let response = await fetch("http://jsonplaceholder.typicode.com/posts");
   let posts = await response.json();
   let container = document.getElementById("container");
   let ol = document.createElement("ol");

   posts.forEach(post => {
      let li = document.createElement("li");
      let anchor = document.createElement("a");
      anchor.appendChild(document.createTextNode(post.title));
      anchor.setAttribute("href",`http://jsonplaceholder.typicode.com/posts/${post.id}`);
      li.appendChild(anchor);
      ol.appendChild(li);

   });

   container.appendChild(ol);

}

getData();

</script>
</body>
</html>

技术分享图片

fetchAPI基本用法

原文:https://www.cnblogs.com/TomHe789/p/12790517.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!