Вот код HTML для объявления таблицы:
<table id="managers_table" class="table table-striped table-bordered">
<thead>
<tr>
<th>S.No :</th>
<th style="display: none">Manager ID</th>
<th>Phone Number</th>
<th>User Name</th>
<th>Particular Store</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
Я добавляю данные в таблицу программно. Ниже приведен код.
db2.collection("UserProfile").doc(userid).get().then(function(doc) {
if (doc.exists) {
c++;
table = document.getElementById("managers_table");
body = "<tr>";
body += "<td>" + c + "</td>";
body += "<td style='display: none'>" + managerid + "</td>";
body += "<td>" + doc.data().MobileNumber + "</td>";
body += "<td>" + doc.data().FirstName + " " + doc.data().LastName + "</td>";
body += "<td>" + StoreName + "</td>";
body += "</tr>";
$( "#managers_table tbody" ).append(body);
}
else {
console.log("No such document!");
}
}).catch(function(error) {
console.log("Error getting document:", error);
});
Теперь я хочу экспортировать эти данные в таблицу Excel. Пожалуйста, помогите мне.