Created
June 13, 2017 06:49
-
-
Save rhyttr/282c939a06ae0526afab130ab0767474 to your computer and use it in GitHub Desktop.
angular2-get-assets-json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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