Skip to content

Instantly share code, notes, and snippets.

@sudheerDev
Created May 8, 2017 04:39
Show Gist options
  • Save sudheerDev/0ab6195c6359b63160a381a92c45c9c8 to your computer and use it in GitHub Desktop.
Save sudheerDev/0ab6195c6359b63160a381a92c45c9c8 to your computer and use it in GitHub Desktop.
var opts = {
method: 'GET',
body: 'json',
headers: {}
};
fetch('/get-data', opts).then(function (response) {
return response.json();
})
.then(function (body) {
//doSomething with body;
});
// <script src="https://cdn.rawgit.com/github/fetch/master/fetch.js"><script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment