第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

通過JS從站點(diǎn)獲取數(shù)據(jù)并保存在字典中

通過JS從站點(diǎn)獲取數(shù)據(jù)并保存在字典中

胡子哥哥 2023-07-14 10:12:39
我想通過 Javascript 從https://api.memegen.link/templates獲取一些數(shù)據(jù)。有人可以指出我正確的方向或給我一些示例代碼嗎?我想獲取所有的nameandblank并將其存儲(chǔ)在字典中。
查看完整描述

1 回答

?
桃花長(zhǎng)相依

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));


查看完整回答
反對(duì) 回復(fù) 2023-07-14
  • 1 回答
  • 0 關(guān)注
  • 168 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)