-1
Good, I have the following JS array in my code:
var Boletins =
{
id:1, items:
[
{
"#": "1",
"Data": "19 a 25 de Março de 2021",
"Região": "região de Trás-Os-Montes e Alto Douro",
"Niveis": "muito elevados",
"PoleneArvore": "cipreste, pinheiro",
"PoleneErva": "urtiga, gramíneas"
},
id:2, items:
[
{
"#": "10",
"Data": "26 de Março a 1 de Abril de 2021",
"Região": "região de Trás-Os-Montes e Alto Douro",
"Niveis": "muito elevados",
"PoleneArvore": "plátano, cipreste, pinheiro, carvalhos"
}]}
I wish I could create an HTML Div for each of the unique id, in this case it goes to id:14 but I’m having doubts and errors in creating the loop.
for (let num in Boletins.id){
htmlText += '<div class="divBoletim">';
htmlText += '<p> Boletim </p>';
htmlText += '<h5>ver mais...</h5>';
htmlText += '</div>';
}
$('body').append(htmlText);
However, my code misses the loop and does not create the Divs for each id present in the array. I appreciate the help you can give me.