浅谈对Jquery+JSON+WebService的使用小结(2)


WebService接口函数代码如下:

        [WebMethod(Description = "测试方法")]
        public List<Person> GetPersonalList()
        {
            List<Person> persons = new List<Person>
                                    {
                                        new Person {Address = "beijing", Age = 25, Name = "zhangshan", Tel = "01082678866"}
                                    };
            return persons;
        }<BR> JQ调用代码如下:

            $.ajax({

            type: "POST",

            url: "WebService1.asmx/GetPersonalList",

            dataType: "json",

            contentType: "application/json; charset=utf-8",

            success: function(json) { $(json.d).each(function() { alert(this.Name + "-" + this.Age + "-" + this.Address + "-" + this.Tel) }) },

            error: function(error) {

                alert("调用出错" + error.responseText);

            }

        });

  如下图:

浅谈对Jquery+JSON+WebService的使用小结

也就是说对于复杂返回类型,处理方式也是简单类型基本上是一样的。

曾听到有一种观念认为,Jq调用时WebSevice,用JSON作为数据交互格式时,返回数据类型一定是可序列化的。真的是这样吗。?

.Net的基本数据类型确实是可序列化的,这一点没有疑问。那么List<T>数据类型是否可以序列化呢。?看看List<T>的元数据(Metadata)信息

就知道了。。

[DebuggerTypeProxy(typeof (Mscorlib_CollectionDebugView<T>))]

[DebuggerDisplay("Count = {Count}")]

[Serializable]

public class List<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable

{

/**/

}

如果上面的说法成立,在这种情况下,调用成功也无可厚非。但是问题真是这样吗。?下面继续测试一下:

测试四:对于WebService复杂返回类型

复制代码 代码如下:


          [WebMethod(Description = "测试方法")]
        public Person GetPerson()
        {
            Person person = new Person {<BR>                               Address = "beijing", Age = 27, <BR>                               Name = "zhangshan", Tel = "01082678866"                               <BR>                              };
            return person;
        }

JQ调用代码如下:

        $.ajax({

            type: "POST",

            url: "WebService1.asmx/GetPerson",

            dataType: "json",

            contentType: "application/json; charset=utf-8",

            //data: "{'person':{'Name':'zhangsan','Age':28,'Address':'beijing',Tel:'01082658866'}}",

            success: function(json) { $(json.d).each(function() { alert(this.Name + "-" + this.Age + "-" + this.Address + "-" + this.Tel) }) },

            error: function(error) {

                alert("调用出错" + error.responseText);

            }

        });

  如下图:

浅谈对Jquery+JSON+WebService的使用小结

但是测试四中,GetPerson()方法返回Person数据类型。再看看Person实体的定义,根本就没有标记问可序列化。

由结果可知:JQ调用WebService,并不一定需要返回复杂类型的数据必须是可序列化的。

下面做一个有趣的测试。大家都知道WebService的返回类型不能为Hashtable类型。因为它实现了因为它实现 IDictionary接口。

测试五:对于WebService复杂返回类型

复制代码 代码如下:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wjgsyy.html