1 回答

TA貢獻(xiàn)1860條經(jīng)驗(yàn) 獲得超8個(gè)贊
首先,我們得到一個(gè)隨機(jī)數(shù)(第一行)。然后我們使用fetch()API 從網(wǎng)站獲取 JSON 數(shù)據(jù)。然后我們將數(shù)據(jù)轉(zhuǎn)換為 json,然后從數(shù)組中選擇一個(gè)隨機(jī)對(duì)象,然后將 和 記錄name到blank控制臺(tái)。這是獲得一件物品的方法。
let random = Math.floor(Math.random() * 10);
fetch("https://api.memegen.link/templates")
.then(data => data.json())
.then(data => {
console.log(data[random].name);
console.log(data[random].blank);
})
.catch(e => console.error(e));
要將所有數(shù)據(jù)放入字典中,您需要這樣做
fetch("https://api.memegen.link/templates")
.then(data => data.json())
.then(data => {
// The line below is a declaration of a array
let items = [];
// Getting every object from the array and pushing the names and images to OUR array
data.forEach(item => {
items.push({ name: item.name, blank: item.blank });
});
// Logging the array
console.log(items);
})
.catch(e => console.error(e));
添加回答
舉報(bào)