json return empty array
when my page loads, I'm using .ajax to calls server side code and return json. The iss开发者_JAVA百科ue I'm having is I get an empty array. So inside my "success: function(data)", it's saying data[0].id is undefined. Is there any way to handle this?
You can check the .length
property before accessing it, return or do something else if it's 0
, like this:
if(data.length === 0) {
alert("empty!");
return;
}
//it has entries, carry on...
var id = data[0].id;
精彩评论