Spaces:
Sleeping
Sleeping
Update ns_info.html
Browse files- ns_info.html +5 -7
ns_info.html
CHANGED
@@ -111,7 +111,7 @@
|
|
111 |
if (data.error) {
|
112 |
resultDiv.innerHTML = `<p style="color: red;">Ошибка: ${data.error}</p>`;
|
113 |
} else {
|
114 |
-
displayResult(data);
|
115 |
}
|
116 |
})
|
117 |
.catch(error => {
|
@@ -119,25 +119,23 @@
|
|
119 |
});
|
120 |
});
|
121 |
|
122 |
-
function displayResult(
|
123 |
let tableHTML = `
|
124 |
<table class="result-table">
|
125 |
<thead>
|
126 |
<tr>
|
127 |
<th>list_id</th>
|
128 |
-
<th>
|
129 |
-
<th>id_phone</th>
|
130 |
</tr>
|
131 |
</thead>
|
132 |
<tbody>
|
133 |
`;
|
134 |
|
135 |
-
|
136 |
tableHTML += `
|
137 |
<tr>
|
138 |
<td>${item.list_id}</td>
|
139 |
-
<td>${item.
|
140 |
-
<td>${item.id_phone}</td>
|
141 |
</tr>
|
142 |
`;
|
143 |
});
|
|
|
111 |
if (data.error) {
|
112 |
resultDiv.innerHTML = `<p style="color: red;">Ошибка: ${data.error}</p>`;
|
113 |
} else {
|
114 |
+
displayResult(data.collection);
|
115 |
}
|
116 |
})
|
117 |
.catch(error => {
|
|
|
119 |
});
|
120 |
});
|
121 |
|
122 |
+
function displayResult(collection) {
|
123 |
let tableHTML = `
|
124 |
<table class="result-table">
|
125 |
<thead>
|
126 |
<tr>
|
127 |
<th>list_id</th>
|
128 |
+
<th>title</th>
|
|
|
129 |
</tr>
|
130 |
</thead>
|
131 |
<tbody>
|
132 |
`;
|
133 |
|
134 |
+
collection.forEach(item => {
|
135 |
tableHTML += `
|
136 |
<tr>
|
137 |
<td>${item.list_id}</td>
|
138 |
+
<td>${item.title}</td>
|
|
|
139 |
</tr>
|
140 |
`;
|
141 |
});
|