Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Jquery to fetch a json file, and I'm getting errors in the browser (Unexpected token : )

Here's my javascript:

fetchScenes: function() {
        $j.ajax({
            crossDomain:true,
            url: 'xml/scenes.json',
            dataType: "jsonp",
            success: function( sceneXML ) {

            }
        }); 
    },

Here's a partial structure from my json:

{ "scenes": {
    "scene": {
      "-id": "0",
      "-name": "Master",
      "scene": [
        {
          "-id": "1",
          "-name": "Weekday Vehicle",
          "-description": "Your home away from home.",
          "scene": [
            {
              "-id": "10",
              "-name": "For My Commute",
              "scene": [
                {
                  "-id": "13",
                  "-name": "Heading to School",
                  "scene": [
                    {
                      "-id": "20",
                      "-name": "Style Seeker",
                      "-vehicles": "1,3,6"
                    },
                    {
                      "-id": "21",
                      "-name": "Creative Thinker",
                      "-vehicles": "9,0,3"
                    }
                  ]
                },

I validated the JSON with JSONLint, so I'm not sure what the problem is.

share|improve this question
When does the error occur? On request or on response? Need more debugging as from what you've described it seems correct. – Jason McCreary Apr 24 '12 at 19:28
It occurs with the JSON file itself (scenes.json, line 2) – mheavers Apr 24 '12 at 19:33
1  
If you tell jQuery to expect JSONP, you have to send JSONP, not JSON: en.wikipedia.org/wiki/JSONP Otherwise, jQuery is evaluating the content as JavaScript, which generates an error... Or if it is actually not a cross-domain request, change dataType: "jsonp" to dataType: "json". – Felix Kling Apr 24 '12 at 19:34

2 Answers

up vote 1 down vote accepted

If you tell jQuery to expect JSONP, you have to send JSONP [Wikipedia], not JSON.

I.e. the response would be someFunctionName({...json here...}); where someFunctionName is usually the value of the callback parameter sent with the URL (generated by jQuery automatically).

jQuery is evaluating the response as JavaScript, which generates an error in your case, since plain JSON is invalid JavaScript.


Or if it is actually not a cross-domain request (xml/scenes.json is a "local" URL), change dataType: "jsonp" to dataType: "json" (and remove crossDomain).

share|improve this answer

Your JSON is invalid. I'm counting 7 opening curly braces and only three closing braces. Also, the number of brackets doesn't add up.

share|improve this answer
1  
"I validated the JSON with JSONLint, so I'm not sure what the problem is." I assume he did not post everything. I think the problem is that he does not return JSONP. – Felix Kling Apr 24 '12 at 19:33
Yes - the json is just a partial so you can see the structure. Felix - can you clarify what you mean in that it doesn't return JSONP? – mheavers Apr 24 '12 at 19:34
1  
@mheavers: JSON is what you have. JSONP is actually just JavaScript, and looks like someFunctionName({...json here...});. – Felix Kling Apr 24 '12 at 19:35
Ah - okay - I thought I could force it (I feel like I've done that before, but it was on a server instead of the local file system) - I'm trying to get around a cross-domain issue, but I guess the only way to do that will be to put it in JSONP as you've listed. Thanks! – mheavers Apr 24 '12 at 19:37
1  
Hmm, it didn't say partial JSON before. Personally, I would put a bit more effort in formulating my question. And besides, why not post the entire JSON when the error doesn't say where the parse error actually occurs? Also, I didn't notice the P in JSONP :) – verhage Apr 24 '12 at 19:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.