web-dev-qa-db-ja.com

部分ビューをHTMLに変換

変換できるのか迷っているだけです

PartialView("_Product", model)

html to [〜#〜] json [〜#〜]

return Json(result, JsonRequestBehavior.AllowGet);
16
Developer

絶対に、次のメソッドを共有コントローラーまたはヘルパークラスに配置します。レンダリングされたビューをHTMLで返します。使い方は自明です。

public static string RenderViewToString(ControllerContext context, string viewName, object model)
{
    if (string.IsNullOrEmpty(viewName))
        viewName = context.RouteData.GetRequiredString("action");

    var viewData = new ViewDataDictionary(model);

    using (var sw = new StringWriter())
    {
        var viewResult = ViewEngines.Engines.FindPartialView(context, viewName);
        var viewContext = new ViewContext(context, viewResult.View, viewData, new TempDataDictionary(), sw);
        viewResult.View.Render(viewContext, sw);

        return sw.GetStringBuilder().ToString();
    }
}
33
Leo Nix

ベストプラクティスかどうかはわかりませんが、そのままにしておくと

return PartialView("_Product", model)

次に、AJAXを使用してメソッドを呼び出すことができます。

$.ajax ({
  type: "POST",
        url: _url,
        data: _data,
        success: function (result) {
            // the result is the returned html from the partial view
        }
})
11
Hager Aly