.net – 从控制器返回一个EditorTemplate作为部分视图

前端之家收集整理的这篇文章主要介绍了.net – 从控制器返回一个EditorTemplate作为部分视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想从我的控制器返回一个EditorTemplate作为部分视图.

我目前在做:

public ActionResult Create([Bind(Prefix="Create")]Createviewmodel model)
{
    return PartialView("~/Views/Shared/EditorTemplates/Template.cshtml",model);
}

问题是,在我这样做之后,Create_前缀远离我的观点.有没有办法返回编辑器模板作为部分视图并保留前缀?

Index.cshtml
@model Indexviewmodel

@using(Html.BeginForm("Create"))
{
    @Html.EditorFor(m => m.Create,"Template")

    <input type="submit" value="Save" />
}

我用AJAX电话提交此表单.当我最初调用EditorFor时,所有的字段都有一个Create_的前缀.但是,在提交表单并返回此PartialView后,该前缀将丢失.

解决方法

由于模板在主视图的上下文中没有被调用,所以它失去了上下文.在这种情况下,您可以定义前缀如下:
public ActionResult Create([Bind(Prefix="Create")]Createviewmodel model)
{
    ViewData.TemplateInfo.HtmlFieldPrefix = "Create";
    return PartialView("~/Views/Shared/EditorTemplates/Template.cshtml",model);
}
原文链接:https://www.f2er.com/aspnet/250884.html

猜你在找的asp.Net相关文章