admin管理员组

文章数量:1344682

I can't display the information I pull with the code below. I have a list of information in another JSON and everything seems to be going well but then when it comes to displaying the restaurant information in the case of hamburger joints, it simply won't

document.addEventListener("DOMContentLoaded", function() {
  cardTitle   = document.querySelectorAll("#titleCard");
  cardCuisine = document.querySelectorAll("#cuisinesCard");
  cardAvg     = document.querySelectorAll("#avgCostCard");
  cardRange   = document.querySelectorAll("#princeRangeCard");
  cardRtng    = document.querySelectorAll("#agrRtngCard");
  cardRtngTxt = document.querySelectorAll("#rtngTextCard");
  cadVotes    = document.querySelectorAll("#votesFive");
    fetch('./Restaurantes.json')
      .then(respostas => respostas.json())
      .then(dados => {
        let contador   = 0;
        let escolhidos = [];
        let limit      = 15;  // Definindo o limite de restaurantes a serem exibidos
        const regex = /"Cuisines":\s*"([^"]*Burger[^"]*)"/;
  
        dados.forEach(e => {
          if ( e["Votes"] > 400  
            && e["Aggregate rating"] > 40 
            && regex.test(JSON.stringify(e)) 
            && contador < limit
          ){
            let restaurante = {
              Restaurant_Name: e["Restaurant Name"],
              Cuisines: e["Cuisines"],
              Average_Cost_for_two: e["Average Cost for two"],
              Price_range: e["Price range"],
              Aggregate_rating: e["Aggregate rating"],
              Rating_color: e["Rating color"],
              Rating_text: e["Rating text"],
              Votes: e["Votes"]
              }
            escolhidos.push(restaurante);
            contador += 1;
          };
        });
        
        for (let index = 0; index < escolhidos.length; index++) {
          cardTitle[index].textContent   = escolhidos[index]["Restaurant_Name"];
          cardCuisine[index].textContent = "Cuisine: " + escolhidos[index]["Cuisines"];
          cardAvg[index].textContent     = "Cuisine: " + escolhidos[index]["Average_Cost_for_two"];
          cardRange[index].textContent   = "Cuisine: " + escolhidos[index]["Price_range"];
          cardRtng[index].textContent    = "Cuisine: " + escolhidos[index]["Rating_color"];
          cardRtngTxt[index].textContent = "Cuisine: " + escolhidos[index]["Rating_text"];
          cardVotes[index].textContent   = "Cuisine: " + escolhidos[index]["Votes"];
      }      
    })
    .catch(erro => console.error("Erro ao carregar JSON:", erro));
  });

What was supposed to happen:

JavaScript was supposed to read the JSON file using fetch.
Filter the restaurant data based on the specified criteria.
Populate the 16 HTML cards with the filtered restaurant information.
If there were fewer than 16 restaurants that matched the criteria, the remaining cards were supposed to display a "Restaurant not found" message or be blank.

What went wrong:

Incorrect Selectors: Initially, the JavaScript selectors (querySelectorAll) did not match the correct IDs of the HTML elements. This prevented JavaScript from finding and populating the cards.

Execution Order: There were issues with the order in which JavaScript attempted to access the HTML elements, possibly before they were fully loaded.

JSON File Path: The JSON file path was incorrect, making it impossible to read the data.

JSON File Structure: The structure of the JSON file may not match what JavaScript expects, causing errors when reading the data.

Incorrect Data: There was an error where the "Aggregate rating" was being filled with the rating color.

Insufficient data handling: The code did not correctly handle cases where there were less than 16 restaurants matching the filter criteria.

本文标签: htmlCould someone help me display information pulled from jsonStack Overflow