我正在使用此方法发送帖子请求,但它为jquery.1.11.1.min.js提供了错误500内部错误。
$(document).ready(function () {
$.ajax({
type: "POST",
url: '@Url.Action("cashondelivery", "Home")',
data: "",
dataType: "json",
contentType: 'application/json; charset=utf-8',
success: function (result) {
alert(result);
},
error: function (data) {
alert(data);
}
});
});
//this is action method in controller
[HttpPost]
public ActionResult cashondelivery(productinfoModel mmodel)
{
return View();
}
答案 0 :(得分:0)
尝试在DHC(chrome插件)中调用url,响应状态代码500表示服务器内部错误,它是服务器-webapp开发人员的错误。不是你的错误。