Bonjour à tous, je suis sur un petit projet de gestion d'une ecole. je viens de rencontrer un souci un script javascript. le soucis se presente au niveau d'affichage des données dans un table html. Besoin d'aide pour me savoir ce qui ne va pas avec le script.
Ma partie HTML
<table class="table table-striped table-hover table-sm mt-3">
<thead class="table-primary">
<tr class="table-primary" style="text-transform: uppercase;">
<th scope="col" style="font-weight: 700;">Nom</th>
<th scope="col" style="font-weight: 700;">Postnom</th>
<th scope="col" style="font-weight: 700;">Prenom</th>
<th scope="col" style="font-weight: 700;">Site</th>
<th scope="col" style="font-weight: 700;">Ecole</th>
<th scope="col" style="font-weight: 700;">Option</th>
</tr>
</thead>
</table>
<tbody id="results">
</tbody>
Ma partie js
getUsers();
function getUsers(){
$.ajax({
type: "POST",
url: "Liste_User_Site_Ecole.php",
success: function (response)
{
$.each(response, function (key, value)
{
$('#results').append(
'</tr>'+
'<td class = "">'+value['id']+'</td>\
<td>' + value['nom'] +'</td>\
<td>' + value['postnom'] +'</td>\
<td>' + value['prenom'] +'</td>\
<td>' + value['site'] +'</td>\
<td>' + value['ecole'] +'</td>\
<td class="align-items-center">\
<a href="#" class="btn btn-success btn-sm Edit " ><i class="bi bi-pencil-square" title="Modifier"></i></a>\
<a href="#" class="btn btn-primary btn-sm delete" ><i class="bi bi-trash3-fill" title="Supprimer"></i></a>\
</td>\
</tr>'
)
});
}
});
}
Les données ne s'affichent pas. Besoin de votre aide s'il vous plaît, je suis sûr que je me suis trompé mais je n'arrive pas retrouver l'erreur