通过jquery ajax将对象传递给WebMethod

时间:2013-03-26 18:38:35

标签: c# asp.net ajax jquery webmethod

我正在尝试将对象传递给定义的页面方法。我正在尝试将数据传递给从三个文本框中收集的数据。

页面方法

    [System.Web.Services.WebMethod]
    public static string saveDataToServer(object csObj)
    {
        // Function Body.
    }

使用Javascript / jQuery的

        $("#osmSendMsg").click(function () {
            debugger;
            var cntDetails = {
                 cntName : $("#osmContactName").val(),
                 cntEmail : $("#osmContactEmail").val(),
                 cntMsg : $("#osmContactMessage").val()
            }
            PostDataToServer(cntDetails,"Please wait...","/ContactUs.aspx/saveDataToServer","csObj");
        });

PostDataToServer

// Post data to server (ajax call).
function PostDataToServer(dataToSend, strMessagetoShow, strMethodToCall, jsonObjectName) {
    debugger;
    /*
    dataToSend          Contains the JSON Object.
    submitType          1 == Normal Submit; 2 == Submit and Print.
    strMessagetoShow    Text that is displayed in the Please Wait Window.
    */
    var tempurl = strMethodToCall;
    var tempdata;
    $.ajax({
        url: tempurl,
        type: "POST",
        async: false,
        dataType: "json",
        data: "{" + jsonObjectName + ":" + JSON.stringify(dataToSend) + "}",
        //timeout: 30000,
        contentType: "application/json; charset=utf-8",
        success: function (data) {
            tempdata = data;
        },
        error: function (result) {            
            tempdata = null;
        }
    });  //end of the ajax call
    return tempdata;
} //End of the post Data

现在呼叫正在到达Web方法。没问题。我也得到了这个对象。但是我该如何处理这个对象?

Data inside the object

正如你所看到的,这就是我所得到的。我也尝试声明一个类并将其作为参数传递。但它的所有属性都是空的。如果您注意到数据显示为键,值对。我可以把它转换成字典,但我相信这是一个复杂的解决方案。

Key - Value Pair

欢迎更简单的解决方案!

2 个答案:

答案 0 :(得分:0)

您的结果集合将在您的成功方法的'data'参数中返回。您可以直接处理此参数,如data [0] .cntName。

答案 1 :(得分:0)

由于您可以访问您的网络方法,您需要修改您的网络方法以从对象中读取数据,如下所示:

    [System.Web.Services.WebMethod]
    public static string saveDataToServer(Dictionary<string, string> csObj)
     {
            try
            {
                 string Name = csObj["cntName"].ToString();
                 string Email = csObj["cntEmail"].ToString();
                 //you can read values like this and can do your operation
                 return "";//return your value
            }
            catch(Exception ex)
            {
                  throw new Exception(Ex.Message);
            }
     }