使用@ Html.EditorFor时,MVC3无法呈现我的SelectList

时间:2012-01-30 16:46:37

标签: asp.net-mvc-3

我正在尝试使用Razor和MVC3渲染ViewModel。由于某些原因,我的SelectList(下面的WidgetTypes)不会渲染,即使其余的都渲染得很好。任何人都可以解释为什么不呢?我不想为每个字段更改View以使用@ Html.EditorFor(m => m.SystemName)等,因为我使用动态模型来处理小部件,这会导致同样的问题。

我的ViewModel:

public class CreateWidgetViewModel 
{
    [Required]
    public string Title { get; set; }

    [Required(ErrorMessage = "The System Name is required")]
    [Display(Name = "System Name")]
    public string SystemName { get; set; }

    [Required]
    [Display(Name = "Widget Type")]
    public string WidgetType { get; set; }

    [Required]
    [Display(Name = "Widget Types")]
    public SelectList WidgetTypes { get; set; }
}

我的控制器:

[HttpGet]
public ActionResult Create()
{
    var widgetTypes = from wt in _widgetService.WidgetTypes
                      select new
                      {
                          Name = wt.WidgetName,
                          WidgetType = wt.GetType().AssemblyQualifiedName
                      };

    var viewModel = new CreateWidgetViewModel
    {
        WidgetTypes = new SelectList(widgetTypes, "WidgetType", "Name")
    };

    if (Request.IsAjaxRequest())
    {
        return PartialView(viewModel);
    }
    return View(viewModel);
}

我的观点:

@{
    ViewBag.CurrentPage = "widgets";
}
<h2>@ViewBag.Title</h2>
@using (Html.BeginForm())
{
    @Html.ValidationSummary(true)
    <fieldset>
        <div>
            @Html.EditorFor(model => model)
        </div>
    </fieldset>
    <div>
        <input type="submit" value="Save" />&nbsp;or&nbsp;@Ajax.ActionLink("Back to list", "Index", "Widget", 
        new AjaxOptions { HttpMethod = "Get", UpdateTargetId = "ajax-replace" })
    </div>
}

1 个答案:

答案 0 :(得分:2)

如果要生成下拉列表,则需要使用Html.DropdownListFor帮助程序。您已将SelectList用作某些属性的类型这一事实并不意味着默认编辑器模板将呈现<select>框。因此,您必须编写自定义编辑器模板。

您可以查看以下blog post,了解这些默认模板的实现方式。