我想通过AJAX发布数据,但无法调用Web api方法。如果我在jquery Ajax调用中编写调试器并执行了Inspect,则可以调用Web API方法。我该如何解决它,即使在控制台中也不会出现任何错误。 请帮助我。
$.ajax({
type: 'POST',
data: userDetail,
url: "http://localhost:12345/api/User/Register",
dataType: "json",
success: function(result) {
debugger;
if (result == "Success") {
alert('User Detail Saved Successfully.');
window.location.href = "http://localhost:12345/Home/Index";
}
if (result == "Failed") {
$("#ErrorMessage").show();
} else {
$("#ErrorMessage").show();
}
},
})
谢谢。