Skip to content

Instantly share code, notes, and snippets.

@rhyttr
Created June 13, 2017 06:49
Show Gist options
  • Save rhyttr/282c939a06ae0526afab130ab0767474 to your computer and use it in GitHub Desktop.
Save rhyttr/282c939a06ae0526afab130ab0767474 to your computer and use it in GitHub Desktop.
angular2-get-assets-json
fetch(cb) {
const req = new XMLHttpRequest();
req.open('GET', `assets/data/company.json`);
req.onload = () => {
cb(JSON.parse(req.response));
};
req.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment