我收到了这个错误
$.ajax({
url: '${searchPatientFileURL}',
data: data,
success: function(oResults)
{
console.log("Results:...->"+oResults);
oResults.sort(function(a, b){
return a.lastname.toLowerCase() > b.lastname.toLowerCase() ?
1 : a.lastname.toLowerCase() < b.lastname.toLowerCase() ? -1 : 0;
});
});
我不知道它为什么会发生。请问有人可以帮我解决我的问题吗?