<!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基本用法
Posted 陈太浪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fetchAPI基本用法相关的知识,希望对你有一定的参考价值。
以上是关于fetchAPI基本用法的主要内容,如果未能解决你的问题,请参考以下文章