我的控制器中有以下方法:
public ActionResult Index()
{
FieldPageViewModel model = new FieldPageViewModel { Title = "My Sample Page", Fields = new List<FieldModel>() };
model.Fields.Add(new DecimalField { Label = "F1 D" });
model.Fields.Add(new DecimalField { Label = "F2 D" });
model.Fields.Add(new IntegerField { Label = "F3 I" });
model.Fields.Add(new DropdownField { Label = "F4 L" });
return View(model);
}
[HttpPost]
public ActionResult Index(List<FieldModel> fields)
{
return View();
}
我的观点模型如下:
public class FieldPageViewModel
{
public string Title { get; set; }
public List<FieldModel> Fields { get; set; }
}
public class FieldModel
{
public string Label { get; set; }
}
public class DecimalField : FieldModel
{
public decimal Value { get; set; }
}
public class IntegerField : FieldModel
{
public int Value { get; set; }
}
public class DropdownField : FieldModel
{
public string Value { get; set; }
}
这是我的观点:
<h2>Index</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>FieldPageViewModel</h4>
<hr />
@Model.Title
<br />
@Html.EditorFor(n => n.Fields)
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")
</div>
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}
我为每种类型的字段(DecimalField,IntegerField和DropdownField)都有一个编辑模板
一切都很好,我的问题是我的帖子。使用已发布的字段对象,我无法转换为每种类型。所以我无法得到整数,小数或字符串值。
如何在post方法中获取派生字段?
答案 0 :(得分:0)
你不能这样做。在背景中,MVC使用它自己的ModelBinder
,它无法找出你实际拥有的类型。
您有两个选择:
首先。定义您自己的ModelBinder
。您可以查看this article,但我可以说,在您的情况下,这将非常困难。
第二次像这样扩展您的基类:
public class FieldModel
{
public string Label { get; set; }
public string Type { get; set; } //here also can be enum
public string Value {get; set; }
}
然后,您可以通过此信息的反映获得实际价值。请注意,您应将Type
放入hidden
input
。
以太方式,最好避免在MVC中使用这些东西。