最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Jquery getJSON Uncaught SyntaxError: Unexpected token : error - Stack Overflow

programmeradmin0浏览0评论

I am trying to connect to the RubyGems API, but when I try to get the JSON I get an stange error.

Uncaught SyntaxError: Unexpected token :

I have seen this error in other questions and posts, but none of the worked for me.

Here is my $.getJSON() function

.getJSON(".json?jsoncallback=?", function(data) {
  ...function stuff....
});

This is the JSON that I should receive:

{"dependencies":{"runtime":[{"name":"actionmailer","requirements":"= 3.0.9"},{"name":"actionpack","requirements":"= 3.0.9"},{"name":"activerecord","requirements":"= 3.0.9"},{"name":"activeresource","requirements":"= 3.0.9"},{"name":"activesupport","requirements":"= 3.0.9"},{"name":"bundler","requirements":"~> 1.0"},{"name":"railties","requirements":"= 3.0.9"}],"development":[]},"name":"rails","downloads":4474748,"info":"Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.","version_downloads":93309,"version":"3.0.9","homepage_uri":"","bug_tracker_uri":"","source_code_uri":"","gem_uri":".0.9.gem","project_uri":"","authors":"David Heinemeier Hansson","mailing_list_uri":"","documentation_uri":"","wiki_uri":""}

Can someone please help me :)

I am trying to connect to the RubyGems API, but when I try to get the JSON I get an stange error.

Uncaught SyntaxError: Unexpected token :

I have seen this error in other questions and posts, but none of the worked for me.

Here is my $.getJSON() function

.getJSON("http://rubygems/api/v1/gems/rails.json?jsoncallback=?", function(data) {
  ...function stuff....
});

This is the JSON that I should receive:

{"dependencies":{"runtime":[{"name":"actionmailer","requirements":"= 3.0.9"},{"name":"actionpack","requirements":"= 3.0.9"},{"name":"activerecord","requirements":"= 3.0.9"},{"name":"activeresource","requirements":"= 3.0.9"},{"name":"activesupport","requirements":"= 3.0.9"},{"name":"bundler","requirements":"~> 1.0"},{"name":"railties","requirements":"= 3.0.9"}],"development":[]},"name":"rails","downloads":4474748,"info":"Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.","version_downloads":93309,"version":"3.0.9","homepage_uri":"http://www.rubyonrails","bug_tracker_uri":"http://rails.lighthouseapp./projects/8994-ruby-on-rails","source_code_uri":"http://github./rails/rails","gem_uri":"http://rubygems/gems/rails-3.0.9.gem","project_uri":"http://rubygems/gems/rails","authors":"David Heinemeier Hansson","mailing_list_uri":"http://groups.google./group/rubyonrails-talk","documentation_uri":"http://api.rubyonrails","wiki_uri":"http://wiki.rubyonrails"}

Can someone please help me :)

Share Improve this question asked Jul 6, 2011 at 1:24 rogeliogrogeliog 3,6924 gold badges28 silver badges26 bronze badges 3
  • Are you sure that's the correct parameter for the callback name? That API might not support JSONP. – Cristian Sanchez Commented Jul 6, 2011 at 1:36
  • The problem is that when I remove the parameter I get this XMLHttpRequest cannot load rubygems/api/v1/gems/cancan.json?. Origin localhost:3000 is not allowed by Access-Control-Allow-Origin. – rogeliog Commented Jul 6, 2011 at 1:54
  • Yes, you need to use JSONP for cross domain requests (unless they change that header - and that only works in some browsers). But since the callback parameter isn't working for that API you're getting a response that the browser can't interpret correctly. – Cristian Sanchez Commented Jul 6, 2011 at 2:03
Add a ment  | 

4 Answers 4

Reset to default 8

What makes you think that rubygems supports JSONP at all? I don't see any mention of JSONP in the documentation and when I do this:

lynx -dump -source 'http://rubygems/api/v1/gems/rails.json?jsoncallback=x'

I get the same plain old JSON as I do from

lynx -dump -source 'http://rubygems/api/v1/gems/rails.json'

The only difference between the two is the downloads and version_downloads change but that's to be expected.

When you use jsoncallback=? in the query string, jQuery will set up a callback function and assume that the remote URL will send back JavaScript (not JSON!) that will call the specified function. So, if the remote service sends back JSON when you're expecting JavaScript, the browser will end up trying to interpret the JSON as JavaScript and get upset because

{"dependencies":{"runtime":[{"name":"action ...

is not a valid JavaScript statement. This sounds exactly like the error you're seeing.

I think you're going to have to proxy the JSON through your own server. You'll need a controller on your server that makes that makes the call to get the JSON and then simply echoes it back to your JavaScript, this will get your around both the lack of JSONP support and your cross domain problem in your client.

The browser is interpreting the curly brackets as a block. The API needs to return a function call with the JSON data as the argument (using the supplied callback name). It doesn't appear that this API supports JSONP & the callback parameter so you'll need to contact them to ask for this support.

It should return something like:

jsonp1279196981233({ ... })

rather than simply:

{ ... }

because the client will be evaluating it as a script. In JavaScript a set of stand alone curly braces will denote a block.

Given that you're passing in a data-handler function to getJSON(), are you sure you want the JSONP callback parameter? Try removing ?jsoncallback=? from the URL:

.getJSON("http://rubygems/api/v1/gems/rails.json", function(data) {
    ...function stuff....
});

Related... If you are not returning valid JSON you will see this error, JSONP aside.

For me I was

format.json { render :json => ActiveSupport::JSON.encode({:foo => true}) :status => :ok }
=>
{
  'foo': true
}

When I should have been

format.json { render :json => ActiveSupport::JSON.encode([{:foo => true}]) :status => :ok }
=>
[
  {
    'foo': true
  }
]
发布评论

评论列表(0)

  1. 暂无评论