Skip to content

Instantly share code, notes, and snippets.

@leandroh
Last active March 26, 2016 00:37
Show Gist options
  • Save leandroh/7c96aaa4a9ffca8c78f3 to your computer and use it in GitHub Desktop.
Save leandroh/7c96aaa4a9ffca8c78f3 to your computer and use it in GitHub Desktop.
Fetch API basic concepts
// url (obrigatório), options (opcional)
fetch('/api/url', {
method: 'get'
}).then(function(response) {
// Sucesso :)
}).catch(function(err) {
// Erro :(
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment