async function charger(){ const rep = await fetch("/api/sondages"); const sondages = await rep.json(); const liste = document.getElementById("liste"); sondages.forEach(s=>{ liste.innerHTML += ` <div> <h3>${s.titre}</h3> <a href="#"> Voir les statistiques </a> </div> `; }); } charger();
async function charger(){
const rep = await fetch("/api/sondages");
const sondages = await rep.json();
const liste =
document.getElementById("liste");
sondages.forEach(s=>{
liste.innerHTML += `
${s.titre}
Voir les statistiques
`;
});
}
charger();