I'm creating a web app that uses MONGOHQ
to store data, and that uses Sinatra to run the app. If I go to: localhost:4578/names.json
, I get the names of all the names that I use for my data. However, I'm having trouble accessing this data using the getJSON
method of jquery
.
The file /names.json
looks like this:
["Yasiel Puig","Nick Franklin","Mike Zunino","Jurickson Profar","Manny Machado"]
I tried doing something like this:
var series = []
$.get('names.json', function(n) {
n.forEach(function(s) {
series.push({
name: s
})
})
}, 'json')
But this does not really work. Do you have any other ideas for how I should access the json data? Could I save it to a var? I'm pretty sure the json
data is not JSONP
format, so maybe I should treat it as AJAX
?
Your code seems to work, I tried it in this Fiddle. Therefore the problem is probably on server side.