.net老项目中Jquery访问webservice

.net老项目中Jquery访问webservice

1. xml类型返回

javascript 复制代码
    jQuery.ajax({
        type: "POST",
        async: false,
        url: "WebService/Evection.asmx/GetCheckUpApplyEForm",
        contentType: "application/json",
        data: "{lngEvectionID:" + eformSNOriginal + "}",
        dataType: 'xml', //返回的类型为XML ,和前面的Json,不一样了
        success: function(result) {
            //演示一下捕获
            try {
                $(result).find("NewDataSet").each(function() {
                if (!bool) {
                        jQuery("#dtmOperatorDate_corres").val($(this).find("WebFlowGlideNo").text());
                        jQuery("#strCheckUpSubsidy").val($(this).find("strCheckUpSubsidy").text());
                        bool = true;
                    }
                });
            }
            catch (e) {
                alert(e);
                return;
            }
        },
        error: function(result, status) { //如果没有上面的捕获出错会执行这里的回调函数
            if (status == 'error') {
                return showError("健康申请列表载入出错。");
            }
        }
    });

对应c#代码

csharp 复制代码
    [WebMethod]
        [ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
        public DataSet GetCheckUpApplyEForm(int lngEvectionID)
        {
            clsEvectionApply obj = new clsEvectionApply();
            DataSet ds = new DataSet();
            ds = obj.GetCheckUpApplyEForm(lngEvectionID);
            return ds;
        }

json返回

javascript 复制代码
function loadEvectionDetailList(beginDate, endDate) {
            var arrBgColor = ["#f2effe", "#fafafa"];
            var table = $("#tabEvection");
            var arrObj = null;

            table.find("tr:not(:first)").remove();
            $.ajax({
                type: "POST",
                contentType: "application/json",
                async: false,
                url: "../../WebService/Evection.asmx/GetFlowDataDetailJson",
                dataType: 'json',
                data: "{employeeID:'" + $N("bnEmployeeID_TextValue").value + "',beginDate:'" + beginDate + "',endDate:'" + endDate + "',showType:4}",
                success: function (result) {
                    arrObj = $.parseJSON(result.d).NewDataSet;
                }
            });


            if (arrObj != null) {
                for (var i = 0; i < arrObj.length; i++) {
                    var tr = $("<tr>");
                    tr.css("background-color", arrBgColor[i % 2]);
                    tr.append($("<td><input type=radio name=radEForm value=" + arrObj[i]["lngCheckUpID"] + "," + arrObj[i]["WebFlowGlideNo"] + "," + arrObj[i]["strCheckUpSubsidy"] + "></td>"));
                    tr.append($("<td>" + arrObj[i]["WebFlowGlideNo"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strEmployeeName"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["dtmOperatorDate"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strRealApplyerName"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strTWJobName"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strCheckUpSubsidy"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strYear"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strCheckpoint"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strCheckDate1"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strCheckDate2"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strAuditName"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["dtmAuditDate"] + "</td>"));
                    tr.append($("<td>" + arrObj[i]["strRemark"] + "</td>"));
                    table.append(tr);
                }
            }
        }

对应c#代码

csharp 复制代码
using Newtonsoft.Json;
    [WebMethod]
        [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
        public string GetFlowDataDetailJson(int employeeID, DateTime beginDate, DateTime endDate, int showType)
        {
            clsEvectionApply obj = new clsEvectionApply();
            DataSet ds = new DataSet();
            ds = obj.GetFlowDataDetail(employeeID, beginDate, endDate, showType);
           
           
            return JsonConvert.SerializeObject(ds);
        }
相关推荐
喵叔哟21 分钟前
【.NET 8 实战--孢子记账--从单体到微服务】--简易权限--访问权限中间件
微服务·中间件·.net
咩咩觉主1 小时前
尽量通俗易懂地概述.Net && U nity跨语言/跨平台相关知识
unity·c#·.net·.netcore
蔚一5 小时前
Javaweb—Ajax与jQuery请求
前端·javascript·后端·ajax·jquery
喵叔哟5 小时前
【.NET 8 实战--孢子记账--从单体到微服务】--简易权限--角色可访问接口管理
数据库·微服务·.net
小码编匠21 小时前
.NET 9 发布 性能提升、AI 支持与全方位改进
人工智能·后端·.net
编程乐趣1 天前
推荐一个Star超过2K的.Net轻量级的CMS开源项目
开源·.net
NetX行者1 天前
基于.NET 9实现实时进度条功能:前后端完整示例教程
.net
内核程序员kevin1 天前
在Linux环境下使用Docker打包和发布.NET程序并配合MySQL部署
linux·mysql·docker·.net
qtvb19872 天前
机器视觉中常用图像处理库都有哪些?重点关注.net
图像处理·人工智能·.net