I\'m trying to load a local JSON file but it won\'t work. Here is my JavaScript code (using jQuery):
var json = $.getJSON("test.json"); var data = e
In angular (or any other framework), you can load using http get I use it something like this:
this.http.get( console.log(data));
Hope this helps.