所以我正在尝试对WebMethod
(ASP .NET C#)进行 AJAX 请求。我查看了许多主题以解决我的问题,但我找不到任何东西。
这是我当前的代码:
<script type="text/javascript">
function mostrarMensaje() {
$.ajax({
type: "POST",
url: "index.aspx/devolverMensaje",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success:
function (msg) {
alert('El mensaje devuelto por el servidor es: ' + msg);
},
error:
function (msg) {
alert(msg.status + " " + msg.statusText);
}
});
}
</script>
这就是我的 WebMethod:
namespace Test
{
public partial class Formulario_web1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod()]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static String devolverMensaje() {
return "pepe";
}
}
}
响应状态为 0。任何人都可以帮助我吗?提前致谢!