Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PriitParmakson/4f6c07b116baa37708dd67d6e399fb31 to your computer and use it in GitHub Desktop.
Save PriitParmakson/4f6c07b116baa37708dd67d6e399fb31 to your computer and use it in GitHub Desktop.
Fetch kasutamine
fetch(url)
.then(res => res.json())
.then((data) => {
// $('#Tulemus').text(JSON.stringify(data, null, 4));
if (data.status == "success") {
kuvaAndmed(data);
} else {
$('#Teade').text('Andmepäring ebaõnnestus');
}
}).catch(err => {
$('#Teade').text('Andmepäring ebaõnnestus');
console.error(err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment