gpt4 book ai didi

javascript - 向 API 发送请求以接收 JSON 并将其作为原始 JSON 文本附加到文档中

转载 作者:行者123 更新时间:2023-12-02 21:00:45 26 4
gpt4 key购买 nike

我正在尝试从 randomuser.me/api/ 获取数据,并使用 insertAdjacentText 方法将其附加到我的空白文档中。那么如何接收数据并将其作为相邻的 HTML 插入呢?

fetch('https://www.randomuser.me/api/')
.then(res => res.json())
.then(data => document.body.insertAdjacentText('afterend', Promise.resolve(data).then(function() { return data; })))

最佳答案

似乎您无法从 Promise 中正确获取 api 结果。想知道下面的内容可能会有所帮助。

var d = fetch('https://www.randomuser.me/api/')
.then((response) => {
return response.json();
})
.then((data) => {
console.log(JSON.stringify(data.results[0]));
document.body.insertAdjacentText("afterend",JSON.stringify(data.results[0]));
});
//

关于javascript - 向 API 发送请求以接收 JSON 并将其作为原始 JSON 文本附加到文档中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61361665/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com