Skip to content

Instantly share code, notes, and snippets.

@BriceShatzer
Last active November 9, 2017 20:52
Show Gist options
  • Save BriceShatzer/d8732f56074a1837adffb829db8fd6e9 to your computer and use it in GitHub Desktop.
Save BriceShatzer/d8732f56074a1837adffb829db8fd6e9 to your computer and use it in GitHub Desktop.
fetch(url, fetchOptions)
.then(function(fetchResponse){
if(fetchResponse.ok){
return fetchResponse.json();
} else {
console.log(url + " failed");
displaySearchErrorMessage(fetchResponse.statusText);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment