我有以下jQuery Ajax
场景,其中 web 方法返回字符串集合。
- 集合可以为空
- 集合可以是非空但零记录。
- 集合有一个或多个记录
以下代码工作正常。它使用jQuery.isEmptyObject。不建议使用isEmptyObject()
时不要使用Plain Object
。
我们如何在不使用 isEmptyObject() 的情况下处理结果?
注意:ajax“结果”是“不简单的”。
参考:
代码
//Callback Function
function displayResultForLog(result)
{
if (result.hasOwnProperty("d"))
{
result = result.d
}
if ($.isPlainObject(result)) {
alert('plain object');
}
else
{
alert('not plain');
}
if($.isEmptyObject(result))
{
//Method returned null
$(requiredTable).append('No data found for the search criteria.');
}
else
{
if (result.hasOwnProperty('length'))
{
//Set the values in HTML
for (i = 0; i < result.length; i++)
{
var sentDate = result[i];
}
}
else
{
//Method returned non-null object; but there is no rows in that
$(requiredTable).append('No data found for the search criteria.');
}
}
}
function setReportTable(receivedContext) {
var searchInput = '111';
$.ajax(
{
type: "POST",
url: "ReportList.aspx/GetReportsSentWithinDates",
data: '{"searchInput": "' + searchInput + '"}',
contentType: "application/json; charset=utf-8",
dataType: "json",
context: receivedContext, //CONTEXT
success: displayResultForLog
}
);
}