a1/fetch.js

15 lines
376 B
JavaScript
Raw Normal View History

2024-05-21 08:06:02 +00:00
const url = "http://localhost/a1/get.php"
//const url = "http://qstack.pl:8080/z1/get.php"
let lista
fetch(url)
.then(response => response.json())
.then(data => {
sortujSufiksy(data)
});
function sortujSufiksy(data) {
data.forEach((element) => document.querySelector('#nieposortowane').innerHTML += `<li> ${JSON.stringify(element.osoby)} </li>`);
}