下面的代码是在返回的行数小于40时显示数据。但是如果返回的行数超过40行,前端就没有数据显示。
我的代码:
$.ajax({
url: '/getdata.htm',
dataType: 'json', // Choosing a JSON datatype
success: function(data) {},
error:function(){
alert("Something went wrong");
}
});
40 行后data.length
显示为 0,而数据不等于 null。错误函数永远不会执行,这是什么问题?