我目前正在尝试将我在Javascript中创建的数组传递给我的aspx.cs中的webmethod。
继承我所拥有的:
JAVASCRIPT
function callServer(requestMethod, clientRequest) {
var pageMethod = "Default.aspx/" + requestMethod;
$.ajax({
url: pageMethod, // Current Page, Method
data: JSON.stringify({ request: clientRequest }), // parameter map as JSON
type: "POST", // data has to be POSTed
contentType: "application/json", // posting JSON content
dataType: "JSON", // type of data is JSON (must be upper case!)
timeout: 60000, // AJAX timeout
success: function (result) {
ajaxCallback(result.d);
},
error: function (xhr, status) {
alert(status + " - " + xhr.responseText);
}
});
}
function myButtonCalls()
{
var values=[];
values[0] = "Hello";
values[1] = "goodbye";
callServer("myMethod", values);
}
ASPX.CS
[WebMethod]
public static string myMethod(string[] request)
{
return "This is test";
}
在它进入我的网络方法之前就失败了。我知道这段代码适用于regualr字符串但是使用JSON的ajax代码看不到想要使用数组。
我需要改变什么想法?
由于
答案 0 :(得分:0)
在aspx.cs中,我需要接受类型列表而不是数组。感谢您的评论!