Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

Node.js के साथ एक HTML तालिका में mysql प्रदर्शित करें

आपको सर्वर से परिणाम प्राप्त करने के लिए एक अजाक्स कॉल करना होगा और नीचे दिए गए जावास्क्रिप्ट का उपयोग करके HTML सामग्री से जुड़ना होगा:

एचटीएमएल टेम्पलेट

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

अजाक्स कॉल करने की स्क्रिप्ट यहां दी गई है

$(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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एसवीजी मानचित्र पर क्लिक करने से एसक्यूएल से डेटा प्रदर्शित करना

  2. मुझे mysql परिणामों के असामान्य क्रम की आवश्यकता है

  3. URL में आईडी का उपयोग करके mySQL से डेटा का चयन करना

  4. एमवीसी 5 में स्टोर प्रक्रिया वापस मूल्य नहीं है

  5. OR ऑपरेटर को UNION ऑपरेटर से कैसे बदलें?