1

我有以下jQuery Ajax场景,其中 web 方法返回字符串集合。

  1. 集合可以为空
  2. 集合可以是非空但零记录。
  3. 集合有一个或多个记录

以下代码工作正常。它使用jQuery.isEmptyObject。不建议使用isEmptyObject()时不要使用Plain Object

我们如何在不使用 isEmptyObject() 的情况下处理结果?

注意:ajax“结果”是“不简单的”。

参考:

  1. 对象是空的吗?
  2. Javascript 的 hasOwnProperty() 方法比 IN 操作符更一致

代码

//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

        }
        );
 }
4

2 回答 2

0

代替

if($.isEmptyObject(result))

if(typeof result !== 'undefined' && result.length < 1)

工作?

未定义的参考在这里JavaScript undefined 属性

undefined 属性表示尚未为变量赋值。

于 2012-12-03T12:44:18.870 回答
0

目前我正在使用以下内容。有什么改进建议吗?

 function displayResultForLog(result) 
 {
   if (result.hasOwnProperty("d")) {
       result = result.d
   }

if (result !== undefined && result != null )
{
    if (result.hasOwnProperty('length')) 
    {
        if (result.length >= 1) 
        {
            for (i = 0; i < result.length; i++) {

                var sentDate = result[i];

            }
        }
        else 
        {
            $(requiredTable).append('Length is 0');
        }
    }

    else 
    {
        $(requiredTable).append('Length is not available.');
    }

}
else 
{
    $(requiredTable).append('Result is null.');
}
}

未定义的参考在这里JavaScript undefined 属性

undefined 属性表示尚未为变量赋值。

于 2012-12-03T13:32:15.760 回答