39.107.83.187:12346/articles get 请求 获取到json ,请给出完整html
时间: 2024-03-14 10:47:51 浏览: 74
根据你提供的信息,我无法给出完整的 HTML 页面,因为 JSON 数据和 HTML 页面是两种不同的格式。如果你需要将 JSON 数据展示为 HTML 页面,可以通过 JavaScript 将 JSON 数据解析成 HTML 标签,然后插入到页面中。
例如,你可以使用以下代码将 JSON 数据渲染为一个 HTML 表格:
```
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Articles</title>
</head>
<body>
<table id="articles">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Content</th>
<th>Author ID</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script>
// 获取 JSON 数据
fetch('http://39.107.83.187:12346/articles')
.then(response => response.json())
.then(data => {
// 渲染表格
const articles = document.querySelector('#articles tbody')
data.data.forEach(article => {
const row = document.createElement('tr')
row.innerHTML = `
<td>${article.id}</td>
<td>${article.title}</td>
<td>${article.content}</td>
<td>${article.author_id}</td>
`
articles.appendChild(row)
})
})
</script>
</body>
</html>
```
在这个例子中,我们使用了 Fetch API 来获取 API 接口返回的 JSON 数据,并使用 JavaScript 将数据渲染成一个 HTML 表格。你可以将这个例子保存为一个 HTML 文件,然后在浏览器中打开来查看效果。
阅读全文