如何使用常规Ajax更新MVC局部视图

时间:2013-10-22 10:03:31

标签: ajax asp.net-mvc asp.net-mvc-4

我有一个Ajax表单来更新它所在的部分视图,但我还需要它来更新第二个局部视图。我想这样做而不将它们合并到一个视图中并更新它。 我认为我最好的选择是在表单的onsuccess上使用常规的jQuery Ajax调用,但我不知道要使用哪些参数,所以我可以调用一个Controller Action来返回partial以使其工作。< / p>

我的表单设置为

@using (Ajax.BeginForm("UpdateDateRange",
                                new { name = Model.Modules[i].Name },
                                new AjaxOptions { UpdateTargetId = Model.Modules[i].Name.Replace(" ", "_") + "_module" }
                                ))
                            { [Input fields] }

2 个答案:

答案 0 :(得分:0)

在你的onSuccess方法中你可以再打一次ajax。

例如,在你的OnSuccessMehtod调用“MethodX”中...这将进行ajax调用并使用返回的结果更新页面上的div

var MethodX = function(id)
{
    $.get("ActionName?id=" + id, function (result) {
        $("#myAnotherdiv").html(result)
    }, 'html');
}

答案 1 :(得分:0)

响应ajax调用,您可以使用此帮助程序发送两个部分视图:

public static class MvcHelpers
{
    public static string RenderPartialView(this Controller controller, string viewName, object model)
    {
        if (string.IsNullOrEmpty(viewName))
            viewName = controller.ControllerContext.RouteData.GetRequiredString("action");

        controller.ViewData.Model = model;
        using (var sw = new StringWriter())
        {
            ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(controller.ControllerContext, viewName);
            var viewContext = new ViewContext(controller.ControllerContext, viewResult.View, controller.ViewData, controller.TempData, sw);
            viewResult.View.Render(viewContext, sw);

            return sw.GetStringBuilder().ToString();
        }
    }
}

在控制器中:

return Json(new { view1 = this.RenderPartialView(...), view2 = this.RenderPartialView(...) });

并且成功地你可以得到两个partialView并用旧的替换它们:

function success(data)
{
    $("someSelectorToSelectPartial1").html(data.view1);
    $("someSelectorToSelectPartial2").html(data.view2);
}