Skip to content

Instantly share code, notes, and snippets.

@michaeldeboeve
Last active June 22, 2017 11:33
Show Gist options
  • Save michaeldeboeve/d3ecdf0ac8c424b2735a96e0bb0fab7e to your computer and use it in GitHub Desktop.
Save michaeldeboeve/d3ecdf0ac8c424b2735a96e0bb0fab7e to your computer and use it in GitHub Desktop.
Load .json file in angular
$http.get('/path/to/myfile.json')
.then(function(response){
$scope.myResult = response.data;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment