.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);
        }
相关推荐
追逐时光者几秒前
精选 8 款 .NET 开源、前后端分离的快速开发框架,提高开发生产效率!
后端·.net
止水编程 water_proof5 小时前
JQuery 基础
前端·javascript·jquery
安得权9 小时前
.NET 把文件上传到Sharepoint - Microsoft Graph API方式
microsoft·.net·sharepoint
薛勇11 小时前
.net中如何选择async/await 和Task.Run?
c#·.net
温暖的苹果13 小时前
【.Net runtime】coreclr(.Net应用启动过程)
c#·.net·.netcore
我是唐青枫14 小时前
深入理解 C#.NET IEnumerable<T>:一切集合的起点
c#·.net
mudtools15 小时前
当传统工单遇见飞书:.NET系统的协作升级之旅
c#·自动化·.net·飞书
唐青枫15 小时前
深入理解 C#.NET Interlocked.Increment:原子操作的核心
c#·.net
搬砖的阿wei15 小时前
JavaScript 请求数据的四种方法:Ajax、jQuery 、Fetch和 Axios
javascript·ajax·axios·jquery
AI题库1 天前
1.3 ABP MVC开发环境搭建指南:从零开始快速上手
asp.net·mvc·.net·.netcore