admin管理员组文章数量:1345733
I am trying to make an ajax call using the below jQuery.
But I can see in Chrome, i'm getting uncaught typeerror cannot read property 'error' of null. So this stops the preloader from going away. Any idea why it's doing this?
function appendTeam(){
$.ajax({
url : _path + "/core/ajax.php",
type : 'POST',
data : { f: 'getTeam'},
dataType : 'json',
success : function(data) {
if(data.error){
errorMessage('Error: ' + data.error, data.error, data.error);
return false;
}else{
var count = 0;
$.each(data.team, function(i, c){
// check
if(!$('#'+c)) return true;
var element = $('#'+c);
$('input[name="s'+i+'"]').val(element.attr('id'));
$('.slot.'+(i+1)+'.ui-droppable').append(element);
element.data('prevParent', $('.slot.'+(i+1)+'.ui-droppable'));
count ++;
});
appendStatus(count);
setTimeout(function(){
$('#preloader').fadeOut('fast',function(){
$('#preloader').remove();
popUp('match');
});
}, 2000);
}
}
});
}
I am trying to make an ajax call using the below jQuery.
But I can see in Chrome, i'm getting uncaught typeerror cannot read property 'error' of null. So this stops the preloader from going away. Any idea why it's doing this?
function appendTeam(){
$.ajax({
url : _path + "/core/ajax.php",
type : 'POST',
data : { f: 'getTeam'},
dataType : 'json',
success : function(data) {
if(data.error){
errorMessage('Error: ' + data.error, data.error, data.error);
return false;
}else{
var count = 0;
$.each(data.team, function(i, c){
// check
if(!$('#'+c)) return true;
var element = $('#'+c);
$('input[name="s'+i+'"]').val(element.attr('id'));
$('.slot.'+(i+1)+'.ui-droppable').append(element);
element.data('prevParent', $('.slot.'+(i+1)+'.ui-droppable'));
count ++;
});
appendStatus(count);
setTimeout(function(){
$('#preloader').fadeOut('fast',function(){
$('#preloader').remove();
popUp('match');
});
}, 2000);
}
}
});
}
Share
Improve this question
asked Oct 8, 2013 at 4:47
Dj IkeDj Ike
251 gold badge1 silver badge7 bronze badges
2
- Can you add an example of the JSON that Ajax.php is rendering? – Jason Sperske Commented Oct 8, 2013 at 4:50
- 2 Also the success callbacks don't need/use return statements – Jason Sperske Commented Oct 8, 2013 at 4:52
4 Answers
Reset to default 6There is a mistake in your if
operator:
if(data.error)...
You should check it like if(data && data.error)...
so if the server returned you null
instead of JSON object you won't try to access object's property error
.
Also maybe you need to handle this case separately:
if(!data) {
// handle empty response
} else if(data.error) {
// handle error
} else {
// process results
}
Test if data
is not null
before trying acces his error
property
Probably the data
object does not contains the property error
or it is null;
so instead of this
if(data.error) {
you can check for it in a different way :
if(data && data.hasOwnProperty('error')) {
which is more fail-safe.
i think response is null try to see response in using firebug
版权声明:本文标题:javascript - JSON or Jquery error: Uncaught TypeError: Cannot read property 'error' of null - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743802716a2541612.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论