jQuery Ajax
Webmethod が文字列のコレクションを返す次のシナリオがあります。
- コレクションは null にすることができます
- コレクションは、null 以外のゼロ レコードにすることができます。
- コレクションには 1 つ以上のレコードがあります
次のコードは正常に動作します。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
}
);
}