gpt4 book ai didi

c# - 通过 jquery ajax 将对象传递给 WebMethod

转载 作者:太空宇宙 更新时间:2023-11-03 16:16:37 25 4
gpt4 key购买 nike

<分区>

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

页面方法

    [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

现在调用到达网络方法。没问题。我也得到了这个对象。但是我该如何处理这个对象呢?

Data inside the object

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

Key - Value Pair

欢迎提供更简单的解决方案!

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com