开发者

Callback function being skipped on jQueries .getJSON command

开发者 https://www.devze.com 2023-01-15 13:36 出处:网络
I have the following snippet of code: $(\'input#teamName\').live(\'blur\', function() { var value = $(this).val();

I have the following snippet of code:

$('input#teamName').live('blur', function() {
  var value = $(this).val();
  if (value) {
    $.getJSON('api/event_company/'+value, function(data) {
      console.log('why does this not want to work?');
    });
  }
});

Basically all it's doing is requesting some data from the server when a f开发者_如何学Goorm field changes. My problem is that nothing in the callback function every gets called even though I can see using firebug that it has successfully sent a request to the server and received a valid JSON response.

If I change the getJSON parameters to:

$.getJSON('api/event_company/'+value, alert('Blah'));

Then the alert pops up as expected. Any ideas what might be causing this behavior?


If the JSON is invalid, the parsing will fail and the handler won't be called. From getJSON docs:

Important: As of jQuery 1.4, if the JSON file contains a syntax error, the request will usually fail silently. Avoid frequent hand-editing of JSON data for this reason. JSON is a data-interchange format with syntax rules that are stricter than those of JavaScript's object literal notation. For example, all strings represented in JSON, whether they are properties or values, must be enclosed in double-quotes. For details on the JSON format, see http://json.org/.

See if your JSON validates.

Your second example is not correct. It should instead be,

$.getJSON('api/event_company/'+value, function() {
    alert('Blah');
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号