data.PSMD

This commit is contained in:
Huang,Yonggang 2024-06-09 16:28:33 +08:00
parent 6a5b2ac8e8
commit cbb415c051
1 changed files with 2 additions and 1 deletions

View File

@ -183,7 +183,8 @@
function createTableHTML(data) {
let tableHTML = '<table border="1"><tr>';
Object.keys(data).forEach(key => {
tableHTML += `<th>task</th>`;
Object.keys(data.PSMD).forEach(key => {
tableHTML += `<th>${key}</th>`;
});
alert(tableHTML);