I keep getting “Uncaught SyntaxError: Unexpected token o”

前端 未结 9 1466
隐瞒了意图╮
隐瞒了意图╮ 2020-11-22 01:46

I\'m trying to learn some html/css/javascript, so I\'m writing myself a teaching project.

The idea was to have some vocabulary contained in a json file which would t

相关标签:
9条回答
  • 2020-11-22 02:13

    Basically if the response header is text/html you need to parse, and if the response header is application/json it is already parsed for you.

    Parsed data from jquery success handler for text/html response:

    var parsed = JSON.parse(data);
    

    Parsed data from jquery success handler for application/json response:

    var parsed = data;
    
    0 讨论(0)
  • 2020-11-22 02:16
    SyntaxError: Unexpected token o in JSON
    

    This also happens when you forget to use the await keyword for a method that returns JSON data.

    For example:

    async function returnJSONData()
    {
       return "{\"prop\": 2}";
    }
    
    var json_str = returnJSONData();
    var json_obj = JSON.parse(json_str);
    

    will throw an error because of the missing await. What is actually returned is a Promise [object], not a string.

    To fix just add await as you're supposed to:

    var json_str = await returnJSONData();
    

    This should be pretty obvious, but the error is called on JSON.parse, so it's easy to miss if there's some distance between your await method call and the JSON.parse call.

    0 讨论(0)
  • 2020-11-22 02:16

    Make sure your JSON file does not have any trailing characters before or after. Maybe an unprintable one? You may want to try this way:

    [{"english":"bag","kana":"kaban","kanji":"K"},{"english":"glasses","kana":"megane","kanji":"M"}]
    
    0 讨论(0)
  • 2020-11-22 02:17

    The problem is very simple

    jQuery.get('wokab.json', function(data) {
        var glacier = JSON.parse(data);
    });
    

    You're parsing it twice. get uses the dataType='json', so data is already in json format. Use $.ajax({ dataType: 'json' ... to specifically set the returned data type!

    0 讨论(0)
  • 2020-11-22 02:18

    Simply the response is already parsed, you don't need to parse it again. if you parse it again it will give you "unexpected token o" however you have to specify datatype in your request to be of type dataType='json'

    0 讨论(0)
  • 2020-11-22 02:18

    I had a similar problem just now and my solution might help. I'm using an iframe to upload and convert an xml file to json and send it back behind the scenes, and Chrome was adding some garbage to the incoming data that only would show up intermittently and cause the "Uncaught SyntaxError: Unexpected token o" error.

    I was accessing the iframe data like this:

    $('#load-file-iframe').contents().text()
    

    which worked fine on localhost, but when I uploaded it to the server it stopped working only with some files and only when loading the files in a certain order. I don't really know what caused it, but this fixed it. I changed the line above to

    $('#load-file-iframe').contents().find('body').text()
    

    once I noticed some garbage in the HTML response.

    Long story short check your raw HTML response data and you might turn something up.

    0 讨论(0)
提交回复
热议问题