我有以下 javascript:
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type: "POST",
url: "WebForm3.aspx/sayHello",
contentType: "application/json; charset=utf-8",
data: "{}",
dataType: "json",
success: AjaxSucceeded,
error: AjaxFailed
});
});
function AjaxSucceeded(result) {
alert(result.d);
}
function AjaxFailed(result) {
alert(result.status + ' ' + result.statusText);
}
</script>
我的代码中有以下内容。
[WebMethod]
public static string sayHello()
{
return "hello";
}
这有效并显示你好。
现在,如果我这样做:
[WebMethod]
public static string sayHello(string args)
{
return "hello";
}
然后我得到内部服务器错误 500 作为回复。
如何更改它以允许我将实际数据发送到服务器端?