这是我的看法
<div>
@using ( Html.BeginForm("jQueryPost", "Home",null, FormMethod.Post, new { id="FormPost" }))
{
@Html.TextBoxFor(x=> x.Name)<br />
@Html.TextBoxFor(x => x.LastName)<br />
@Html.TextBoxFor(x => x.Age)
<input type=submit value="submit" />
}
</div>
<script>
$(document).ready(function () {
$('#FormPost').submit(function (e) {
//This line will prevent the form from submitting
e.preventDefault();
alert('ajax post here');
$.ajax({
type: 'POST',
url: $('FormPost').attr('action'),
data: $('FormPost').serialize(),
accept: 'application/json',
error: function (xhr, status, error) {
alert('error: ' + xhr.statusText);
},
success: function (response) {
alert('resp: ' + response.data);
}
});
});
});
</script>
这些是 Home 控制器的方法:
public ActionResult Index()
{
return View();
}
[AcceptVerbs(HttpVerbs.Post)]
public JsonResult jQueryPost(IndexVM vm)
{
IndexVM _vm = vm;
return Json("name posted was: " + _vm.Name);
}
这是路线图
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
当页面加载时,它会转到 Index 操作方法,这是可以理解的。但是,当我提交表单时,它会再次进入 Index 操作方法。这是为什么?
将显示警报消息“ajax post here”,然后显示成功警报(“resp:”+ response.data)。但是,由于我没有在索引中返回任何内容,因此我在警报框中得到了一个响应:未定义。
我该如何解决这个问题,以便表单发布到该public JsonResult jQueryPost(IndexVM vm)
方法?我还尝试将 JsonResult 替换为 ActionResult 并且效果相同。