gpt4 book ai didi

c# - MVC 在 EditorFor 中渲染局部 View

转载 作者:行者123 更新时间:2023-11-30 15:26:45 25 4
gpt4 key购买 nike

关于建议的解决方案 here ,我试过但没用——我想知道 Razor 是如何渲染强类型局部 View 的?我按照建议做了,但感觉它没有正确捆绑并且缺少某些东西。

我的“子”模型:

public class Cohort
{
public bool ukft { get; set; }
public bool ukpt { get; set; }
...etc
}

我的强类型局部 View :

@model Models.Cohort

@Html.RadioButtonFor(model => Model.ukft, true) <span style="margin-right:8px;">Yes</span>
@Html.RadioButtonFor(model => Model.ukft, false) <span>No</span> <br />

我的主要模型(包含队列对象列表):

public class OptOut
{
public int optOutID { get; set; }
public bool hasOptedOut { get; set; }
public List<Cohort> list { get; set; }

public OptOut()
{
List<Cohort> list = new List<Cohort>();
list.Add(new Cohort());
list.Add(new Cohort());
list.Add(new Cohort());
list.Add(new Cohort());
this.list = list;
}
}

然后是我的 html:

@model Models.OptOut
@using (Html.BeginForm("OptedOut", "Home"))
{
//this should supposedly figure out to render a partial view for each element in the list
@Html.EditorFor(model => model.list)

<div class="form-group" style="margin-top:25px;">
<input id="confirm" type="submit" value="Confirm" class="btn btn-success btn-lg"/>
</div>
}

最佳答案

看来您只是缺少 EditorFor 和您的部分 View 之间的连接。虽然 EditorFor 确实 使用部分 View ,但更恰本地说,它使用所谓的“编辑器模板”。这些只是部分 View ,其位置和文件名遵循特定约定。

也就是说,您的分部 View 应该放在 Views\Shared\EditorTemplates 中。 (创建目录。默认情况下它不存在。)然后,它应该以它应该使用的类型命名。这里是 Cohort,所以最终的路径和名称应该是:

Views\Shared\EditorTemplates\Cohort.cshtml

然后,EditorFor 将看到您有一个 Cohort 列表,并使用 Cohort.cshtml 编辑器模板呈现每个项目列表。

关于c# - MVC 在 EditorFor 中渲染局部 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28770808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com