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
版权声明:本文标题:html - Could someone help me display information pulled from json? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743735958a2530014.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论