Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two forms ('table' and 'fields'). The 'fields' form is supposed to pre-populate with options depending on the choice made in 'table', by making an Ajax request. The data is returning perfectly and actually prepopulates the second form (like it should) if I pass a cut-and-paste example of some returned data to a local variable (see commented line).But for some reason it won't work on the returned object?? Any advice would be appreciated as I am very new to JavaScript and am probably missing something blatantly obvious! I am using the following code:

$(document).ready(function() {
$('select#table').change(function(){
$.getJSON("/ajax_get",{id: $(this).val(), ajax: 'true'}, function(data) {
//var data = [{"optionValue":"address", "optionDisplay": "address"},{"optionValue":"latitude", "optionDisplay": "latitude"},{"optionValue":"longitude", "optionDisplay": "longitude"},];
  var $persons = $('#fields').empty();
  $.each(data, function() {
    $persons.append("<option value=" + this.optionValue + ">" + this.optionDisplay + "</option>");
  });
});
});
});
share|improve this question
$this should be this. – bfavaretto Aug 2 '12 at 22:13
Sorry about that..its been edited now. The problem is the same though. – user1570955 Aug 2 '12 at 22:20
Make sure your server os returning valid JSON. – bfavaretto Aug 2 '12 at 22:22
You could try typeof(data.some_var_you_expect) in a try { } catch { } block to handle cases where the server is not returning what you're expecting (a PHP error, blank page, etc, etc). What does console.dir(data) tell you? – Tim Post Aug 3 '12 at 2:55

migrated from codereview.stackexchange.com Aug 3 '12 at 15:02

1 Answer

up vote 0 down vote accepted

Here's a simplified version of your call that should help you figure it out quickly:

$.getJSON("/ajax_get",{id: $(this).val(), ajax: 'true'}, function(data) {
  try { 
       typeof(data.somethingYouExpect);
       /* do your on success work here */
  } catch (e) {
     alert('There is a good chance the response was not JSON');
  }
});

Even when using the regular jQuery $.ajax call, it's important to check to be sure the returned response is in the form you expect. This is as simple as setting a variable like success in your response as true. If you did that, the above example becomes something like this:

var jqxhr = $.getJSON("/ajax_get",{id: $(this).val(), ajax: 'true'}, function(data) {
  try { 
       typeof(data.success); // Will throw if success is not present
       if (success == true) {
             /* handle success */
       } else {
             /* handle a request that worked, but the server said no */
       }
  } catch (e) {
     /* The actual HTTP request worked, but rubbish was returned */
     alert('There is a good chance the response was not JSON');
     console.dir(jqxhr.textResponse);
  }
});

Here, we remember the object returned by the $.getJSON call (which is just a shortcut to $.ajax), which allows us to view the actual response sent by the server. I'm willing to bet it's a 404, parser error or something of that sort.

For most things, I usually just use $.ajax mostly out of personal preference, where the error callback passes the xhr object to a common function to examine (did the request return 200? etc). If something explodes, I know exactly what went wrong by briefly looking at the console and can disable debug output in one place.

share|improve this answer
Thanks for such a detailed response Tim, much appreciated. It was an extra comma in the returned data (caused by the way I manipulated the data in a loop) making it an invalid JSON response. json_encode and json_decode are now my best friends ;) Cheers. – user1570955 Aug 3 '12 at 7:32

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.