playground:playground
Это старая версия документа!
PlayGround
| (null) | (null) |
|---|
<script> fetch('/bot/nalog.json')
.then(response => response.json())
.then(data => {
let table = '<table border="1"><tr><th>Имя</th><th>Очки</th></tr>';
data.forEach(user => {
table += `<tr><td>${user.name}</td><td>${user.points}</td></tr>`;
});
table += '</table>';
document.getElementById('users-table').innerHTML = table;
})
.catch(err => {
document.getElementById('users-table').innerHTML = 'Ошибка загрузки данных';
console.error(err);
});
</script>
playground/playground.1759497072.txt.gz · Последнее изменение: — Дима Виглес
