Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Zeigen Sie mysql in einer HTML-Tabelle mit Node.js an

Sie müssen einen Ajax-Aufruf tätigen, um ein Ergebnis vom Server zu erhalten, und HTML-Inhalte mithilfe von Javascript wie folgt binden:

HTML-Vorlage

 <table id="tableData" class="table table-fixed">
<thead>
  <tr>
  </tr>
</thead>
<tbody class="tbody" >
</tbody>

Hier ist das Skript, um einen Ajax-Aufruf zu tätigen

$(document).ready(() => {

$.ajax({
    url: "http://localhost:9000/list", 
    method: 'GET',
    success: function(response){
        if(response.rows.length > 0){
            for(let index = 0; index < response.rows.length; index++) {
                var newRow = $("<tr>");
                var cols = "";
                var firstname = '';
                var lastname = '';
                var gender = '';
                cols += '<td> '+ response.rows[index].firstname +'</td>';
                cols += '<td> '+ response.rows[index].lastname +'</td>';
                cols += '<td> '+ response.rows[index].gender+'</td>';                
                newRow.append(cols);
                $("#tableData .tbody").append(newRow);
            }  

        }
    }
})
})