我使用以下 C#/jQuery 不断获得 500。任何给定的实现都可能不正确,这不是一个大问题。我只是想建立一个你好世界。如果 c# 没有参数,它会起作用,但是一旦我尝试接收数据,它就会给出 500。
[WebMethod]
public static string Test(string s)
{
// never gets here
}
$.ajax({
type: "POST",
url: "ajax.aspx/" + method,
/*async: true,*/
data: "{data:'" + data + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
callback(data.d);
}
});
最新的尝试是这仍然不起作用:
[WebMethod()]
public static string Test(string data)
{
// never gets here
return "hello world";
}
$.ajax({
type: "POST",
url: "ajax.aspx/Test",
data: "data: {data:'abc'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) {
alert("back");
}
});