Fetch API
Esimerkki
fetch('/persons.json')
.then(function (response) {
return response.json();
})
.then(function (data) {
console.log(data);
});Esimerkki ES2017 async-funktiolla *
Last updated