javascript - 如何使用JavaScript将Fetch数据设置为Array并将数据设置为innerHTML Bootstrap卡

标签 javascript html ajax fetch-api

我有这样的 Fetch 方法:

async function sendApiRequest() {
    let APP_ID = "f61bb958";
    let APP_Key = "7c465e19d8e2cb3bc8f79e7a6e18961e"
    let INPUT_VALUE = document.getElementById("inputRecipe").value;
    console.log(INPUT_VALUE)
    fetch(`https://api.edamam.com/search?app_id=${APP_ID}&app_key=${APP_Key}&q=${INPUT_VALUE}`)
        .then(response => response.json())
        .then(data => {
            console.log(data);
            document.getElementById("ripeCard").innerHTML = `
       <div class="card" style="width: 18rem;">
           <img src="${data.image}" class="card-img-top" alt="...">
          <div class="card-body">
          <h5 class="card-title">Card title</h5>
           <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
        <a href="#" class="btn btn-primary">Go somewhere</a>         
      </div>
            `
        })
}

API返回数据如下:

count: 7000
from: 0
hits: Array(10)
0:
recipe: {uri: "http://www.edamam.com/ontologies/edamam.owl#recipe_1b6dfeaf0988f96b187c7c9bb69a14fa", label: "Pizza Dough", image: "https://www.edamam.com/web-img/284/2849b3eb3b46aa0e682572d48f86d487.jpg", source: "Lottie + Doof", url: "http://www.lottieanddoof.com/2010/01/pizza-pulp-fiction-jim-lahey/", …}
__proto__: Object
1:
recipe: {uri: "http://www.edamam.com/ontologies/edamam.owl#recipe_0209cb28fc05320434e2916988f47b71", label: "White Pizza", image: "https://www.edamam.com/web-img/dfe/dfe2e44c86334a3a3a5f774dda576121.jpg", source: "Food52", url: "https://food52.com/recipes/40095-white-pizza", …}
__proto__: Object
2:
recipe: {uri: "http://www.edamam.com/ontologies/edamam.owl#recipe_77db6e25dffe1836d4407cf4575f0141", label: "Chorizo, caper & rocket pizza", image: "https://www.edamam.com/web-img/7fe/7fee72cbf470edc0089493eb663a7a09.jpg", source: "BBC Good Food", url: "http://www.bbcgoodfood.com/recipes/1506638/chorizo-caper-and-rocket-pizza", …}
__proto__: Object
3:
recipe: {uri: "http://www.edamam.com/ontologies/edamam.owl#recipe_c9bf37296a0126d18781c952dc45a230", label: "Pizza Frizza recipes", image: "https://www.edamam.com/web-img/94a/94aeb549b29ac92dced2ac55765f38f9", source: "Martha Stewart", url: "http://www.marthastewart.com/284463/pizza-frizza", …}
__proto__: Object
4:
recipe: {uri: "http://www.edamam.com/ontologies/edamam.owl#recipe_b2ebad01df2a319d259c2d3f61eb40c5", label: "Margarita Pizza With Fresh Mozzarella & Basil", image: "https://www.edamam.com/web-img/d72/d72d1b7dd988e3b340a4b90ed3d56603.jpg", source: "Big Girls Small Kitchen", url: "http://www.biggirlssmallkitchen.com/2010/06/cooking-for-others-bff-pizza-party.html", …}
__proto__: Object
5:
recipe: {uri: "http://www.edamam.com/ontologies/edamam.owl#recipe_1b25671a32284038b57ad8b49c44af68", label: "Grilled BLT Pizza recipes", image: "https://www.edamam.com/web-img/2ac/2ac98d88117ff8f2327d302ab290b164", source: "Food Republic", url: "http://www.foodrepublic.com/recipes/grilled-blt-pizza-recipe/", …}
__proto__: Object
6: {recipe: {…}}
7: {recipe: {…}}
8: {recipe: {…}}
9: {recipe: {…}}
length: 10
__proto__: Array(0)
more: true
q: "pizza"
to: 10

我需要将 Fetch data 设置为 insideHTML Bootstrap 卡, 但要做到这一点,我需要将获取数据设置为数组。 如何将 Fetch 数据设置为数组以及如何将 Fetch 数据设置为 insideHTML Bootstrap 卡?

最佳答案

我认为您需要从 API 获得的是配方,因此 API 在 hits 属性中返回它们。 hits 属性是一个食谱数组

配方对象中的属性是:所以你可以选择你需要的,

['uri', 'label', 'image', 'source', 'url', 'shareAs', 'yield', 'dietLabels', 'healthLabels', 'cautions', 'ingredientLines', 'ingredients', 'calories', 'totalWeight', 'totalTime', 'cuisineType', 'mealType', 'dishType', 'totalNutrients', 'totalDaily', 'digest'];

async function sendApiRequest() {
    let APP_ID = 'f61bb958';
    let APP_Key = '7c465e19d8e2cb3bc8f79e7a6e18961e';
    let INPUT_VALUE = document.getElementById('inputRecipe').value;
    const response = await fetch(`https://api.edamam.com/search?app_id=${APP_ID}&app_key=${APP_Key}&q=${INPUT_VALUE}`);
    const data = await response.json();

    document.getElementById('ripeCard').innerHTML = ''; // Resetting the content of the element

    // Iterating through the array of recipes and destructuring the result object to give only the recipe property
    data.hits.forEach(({recipe}) => {
        document.getElementById('ripeCard').innerHTML += `
       <div class="card" style="width: 18rem;">
           <img src="${recipe.image}" class="card-img-top" alt="...">
          <div class="card-body">
          <h5 class="card-title">${recipe.label}</h5>
           <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
        <a href="${recipe.url}" class="btn btn-primary">Go somewhere</a>         
      </div>`;
    });
}

sendApiRequest();
<input id="inputRecipe" value="pizza">
<div id="ripeCard"></div>

关于javascript - 如何使用JavaScript将Fetch数据设置为Array并将数据设置为innerHTML Bootstrap卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67268458/

相关文章:

javascript - postman 中处理 express 发回的错误

javascript - Firebase 查询数据显示在 javascript 中的另一个表上

html - 如何在CSS中实现文本缩放效果

javascript - 困惑为什么Javascript AJAX成功: JSON data is "invalid"

javascript - 如何以 Angular 方式实现 Twitter 按钮

javascript - 使用 Php、javascript 的 AES 加密,反之亦然

javascript - 关于 Javascript 中 RegExp 的一个问题

jquery - 将 PayPal 按钮变成图像标题

html - 如何水平居中元素?

javascript - 验证表单数据