2

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

页面方法

    [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 方法。没问题。我也得到了对象。但是如何处理对象?

对象内的数据

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

键值对

欢迎使用更简单的解决方案!

4

2 回答 2

0

您的结果集合将在成功方法的“数据”参数中返回。您可以像 data[0].cntName 一样直接处理这个参数。

于 2013-03-26T19:32:13.393 回答
0

当您能够访问您的 webmethod 时,您需要修改您的 webmethod 以从对象中读取数据,如下所示:

    [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);
            }
     }
于 2016-02-19T06:53:37.027 回答