循环查看视图中的模型属性

时间:2012-03-28 22:57:40

标签: c# .net asp.net-mvc-3

我有一个非常简单的视图模型

public class TellAFriendViewModel
{
    public string Email1 { get; set; }
    public string Email2 { get; set; }
    public string Email3 { get; set; }
    public string Email4 { get; set; }
    public string Email5 { get; set; }
}

然后是我视图中的相应输入,但我想知道是否有更好的方法(例如循环)将类似的TextBox写入我的视图:

@using (Html.BeginForm()){
    @Html.AntiForgeryToken()

    @Html.TextBoxFor(vm => vm.Email1)
    @Html.TextBoxFor(vm => vm.Email2)
    @Html.TextBoxFor(vm => vm.Email3)
    @Html.TextBoxFor(vm => vm.Email4)
    @Html.TextBoxFor(vm => vm.Email5)
}

7 个答案:

答案 0 :(得分:36)

您应该访问

ViewData.ModelMetadata.Properties。没有理由加倍反射工作,加上它为你计算出DataAttributes元数据。

@foreach(var property in ViewData.ModelMetadata.Properties)
{
    <div class="editor-line">
        <label>@(property.DisplayName??property.PropertyName)</label>
        @Html.Editor(property.PropertyName)
    </div>
}

答案 1 :(得分:11)

您应该考虑使用数组。

然而,如果你想要反思,它会是这样的:

@foreach (var prop in Model.GetType().GetProperties())
{
    @(Html.TextBox(prop.Name, prop.GetValue(Model, null)))
}

答案 2 :(得分:4)

除非我遗漏了什么,否则我不知道为什么没人提出这个建议。为什么每个人都循环和/或使用反射?

public class TellAFriendViewModel
{
    public ICollection<EmailViewModel> Emails { get; set; } // populate 5 of them in ctor or controller
}

public class EmailViewModel
{
    public string Email { get; set; }
}

查看:

@using (Html.BeginForm()){
    @Html.AntiForgeryToken()
    @Html.EditorFor(model => model.Emails)
}

<强> EditorTemplates \ EmailViewModel.cshtml

@Html.TextBoxFor(model => model.Email)

MVC中绝对不需要循环。我重复。 NEVER

答案 3 :(得分:1)

这是可接受的方式

foreach (var prop in ViewData.ModelMetadata.Properties.Where(pm => !pm.HideSurroundingHtml && pm.ShowForEdit && !ViewData.TemplateInfo.Visited(pm))) {

<div class="form-group">

    <label>
        @prop.GetDisplayName() 
        @if (prop.IsRequired)
        {
            <span class="required">*</span>
        }
    </label>
    @Html.Editor(prop.PropertyName)

    @Html.ValidationMessage(prop.PropertyName, new {@class = "help-block"})
</div>

}

答案 4 :(得分:0)

可以对属性使用反射,或者使用简单的for循环生成与解决方案中生成的相同的HTML,但是你的目标是什么?
为简单起见,你赢了。

<强>反射

 foreach (var prop in typeof(whatever).GetProperties(BindingFlags.Instance | BindingFlags.Public))
 {
    @Html.TextBox(prop.Name, prop.GetValue(Model));
 }

<强>循环

var numberProperties = 5; // you could also do typeof(whatever).GetProperties(BindingFlags.Instance | BindingFlags.Public).Count();
@for(var i = 0; i < numberProperties; i++){
 <input type="text" name="Email@i" id="Email@i"/>
}

答案 5 :(得分:0)

您可以使用Reflection循环遍历模型的每个属性......如下所示

Type type = Model.GetType(); // Model is the object you are binding with in your view
PropertyInfo[] properties = type.GetProperties();
foreach (var property in properties)
{
    // Code to create your text box for the property
}

希望这会有所帮助......

答案 6 :(得分:0)

也许是这样的?

public class TellAFriendViewModel
{
 List<string> Emails { get; set; }

 public TellAFriendViewModel()
 {
  Emails = new List<string>(5);
 }
}

@using (Html.BeginForm()){
 @Html.AntiForgeryToken()

 @for(int count = 0 ; count < model.Emails.Count; count++)
 {
  @Html.TextBoxFor(vm => vm.Emails[count])
 }
}