sql >> Databáze >  >> RDS >> Mysql

Zobrazte mysql v html tabulce pomocí Node.js

Musíte provést volání ajax, abyste získali výsledek ze serveru a spojili se s obsahem HTML pomocí javascriptu, jak je uvedeno níže:

HTML šablona

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

Zde je skript pro volání ajax

$(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);
            }  

        }
    }
})
})


  1. Případ MySQL v příkazu Select s operátorem LIKE

  2. Oracle DB:Jak mohu napsat dotaz bez ohledu na velikost písmen?

  3. Generování řady čísel v MySQL

  4. Jak nastavit varchar, aby měl neomezenou délku?