How to render partial view in controller for Json

后端 未结 1 1823
不知归路
不知归路 2021-01-21 16:26

How can I render a partial view to be used in a JsonResult in a controller?

return Json(new
{
    Html = this.RenderPartialView(\"_EditMovie\", updatedMovie),
           


        
相关标签:
1条回答
  • 2021-01-21 17:06

    RenderPartialView is a custom extension method which renders a view as a string.

    It wasn't mentioned in the article (what you have referred originally) but you find it in the sample code attached to the article. It can be found under the \Helpers\Reders.cs

    Here is code of the method in question:

    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();
        }
    }
    
    0 讨论(0)
提交回复
热议问题