问题
我想显示一个具有可变数值的表单。但是,每个表单项都必须具有与之关联的一种键。例如,表单生成一个名称,用户名和职业字段,我还需要生成密钥,以便在提交表单时,接收方法可以告诉哪些项目是什么。
尝试解决方案
现在我有一个FieldItems列表,其中FieldItem只是一个带有一个String类变量的类。填充表单时解决方案有效,但是在提交时会返回一个列表,我无法分辨哪个值属于哪个键。我正在考虑使用字典,但我不知道如何用剃刀来完成。
查看模型
public class BuildReportViewModel
{
public IList<BuildReportFieldItemViewModel> Fields { get; set; }
}
public class BuildReportFieldItemViewModel
{
public string Field { get; set; }
}
BuildReportFieldItemViewModel的编辑器
@model BuildReportFieldItemViewModel
<div class="editor-label">
<label for="@Model.Field">@Model.Field</label>
</div>
<div class="editor-field">
<input type="text" name="@Model.Field">
</div>
答案 0 :(得分:4)
尝试使用隐藏的密钥字段
查看模型
public class BuildReportViewModel
{
public IList<BuildReportFieldItemViewModel> Fields { get; set; }
}
public class BuildReportFieldItemViewModel
{
public string Field;
public string Key;
}
BuildReportFieldItemViewModel的编辑器
@model BuildReportFieldItemViewModel
<div class="editor-label">
<label for="@Model.Field">@Model.Field</label>
</div>
<div class="editor-field">
@Html.TextBoxFor(x => x.Field)
@Html.Hidden(Model.Key, "key_value");
</div>