前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Jquery ajax传递复杂参数给WebService

Jquery ajax传递复杂参数给WebService

作者头像
跟着阿笨一起玩NET
发布2018-09-20 15:14:12
7350
发布2018-09-20 15:14:12
举报

参考:

http://www.cnblogs.com/kingge/archive/2011/08/04/2127642.html

http://www.cnblogs.com/micromouse/archive/2010/08/14/1799464.html

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
 
namespace Entity
{
    [DataContract]
    public class User
    {
        [DataMember]
        public string Name
        {
            get;
            set;
        }
 
        [DataMember]
        public int Age
        {
            get;
            set;
        }
    }
}

WebService:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using Entity;
 
namespace JQuery.Handler
{
 
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    [System.Web.Script.Services.ScriptService]
    public class UserService1 : System.Web.Services.WebService
    {
 
        [WebMethod]
        public string ComplexType(User hero,List<User> users)
        {
            return hero.Name + " has " + users.Count + " people!";
        }
    }
}
Html:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Ajax</title>
    <script src="../Scripts/jquery-1.6.min.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function () {
            $("#btnWeb").click(function () {
                $.ajax(
                {
                    type: "post",
                    url: "../Handler/UserService.asmx/ComplexType",
                    dataType:"json",
                    contentType:"application/json",
                    data: '{"hero": {"Name":"zhoulq","Age":27},"users":[{"Name":"zhangs","Age":22},{"Name":"wangw","Age":26},{"Name":"liuj","Age":25},
                           {"Name":"luos","Age":24}]}',
                    success: function (data) { $("#web").text(data.d); }
                });
            });
        });
    </script>
</head>
<body>
    <input id="btnWeb" type="button" value="请求WebService" /><label id="web"></label>
</body>
</html>
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2015-06-15 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档