为什么Ajax.BeginForm在提交后将我的页面重定向到新的空白页面?
我的控制器代码是:
[HttpPost] public void ProductCommentAdd(int productId,string text) { //Do something }
在视图中调用Mvc ajax是:
@using (Ajax.BeginForm("ProductCommentAdd","Shop",new AjaxOptions() { HttpMethod = "POST"})) { <input type="hidden" value="@Model.ProductId" name="ProductId"/> <textarea name="text"></textarea> <input type="submit" value="Submit" }
解决方法
您需要在页面中包含以下脚本:
<script src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.min.js")" type="text/javascript"></script>