fetchAPI基本用法

Posted 陈太浪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fetchAPI基本用法相关的知识,希望对你有一定的参考价值。

<!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基本用法的主要内容,如果未能解决你的问题,请参考以下文章

Fetch

python调试:pdb基本用法(转)

Python中的基本函数及其常用用法简析

c_cpp 加载源图像固定用法(代码片段,不全)

JavaSE 方法的使用

SQL Select 语句的用法