async function apiFetch() {
let response = await fetch("https://dog.ceo/api/breeds/image/random");
let success = await response.json();
const img = document.createElement("img");
img.src = success.message;
div.append(img)
}
然后,当调用控制台apiFetch()中的函数时,控制台将告知已满和挂起
1条答案
按热度按时间bq3bfh9z1#
从您的嗅探代码中,我猜您希望获得图像URL并显示为HTML。
我做了两个独立的函数和
on click
事件函数。首先(
getImageUrl()
)是获取图像URL。第二个(
loadImage()
)是将图像显示为HTML。最后一个(
updateImage()
)是按顺序合并和调用的。这个演示将工作。
结果
参考文献
Downloading images with node.js
How to Use Fetch with async/await
How do I clear the content of a div using JavaScript?
The onclick Event
Fetch image from API