I have a simple json file with a list of artist names, like
[\"Vincent van Gogh\", \"Leonardo da Vinci\", \"Pablo Picasso\"]
I can\'t figur
you can try this:
$http.get("/home/user/artist_names.json") .success(function(response) {$scope.artists = response;});