我正在編寫一個程序,該程序從 API 呼叫以獲取隨機的貓圖像。我希望能夠在我的網頁上顯示該圖像,而不僅僅是在控制台中顯示網址。
//這是我的 html(這確實很基本,但我只想讓輸出正常工作)
Cat Gif
This is a random image of a cat!
//這是我的 JavaScript
let container = document.querySelector(".container"); async function apiFunction() { await fetch("https://api.thecatapi.com/v1/images/search") .then(res => res.json()) .then((result) => { //items = result; let img = document.createElement("img"); img.src = result[0].url; container.appendChild(img); }), (error) => { console.log(error); } }