10

我有一个非常简单的问题,有一个我找不到的解决方案。

给定以下模型:

public class InfoViewModel
{
    public SelectList States { get; set; }

    [DisplayName("State")]
    public string State { get; set; }
}

在我看来,以下工作正常:

@Html.DropDownListFor(m => m.State, Model.States)

但是,如果我尝试将其拉入编辑器模板(名为“SelectList”),例如:

@model System.String
@Html.DropDownListFor(m => m, ViewData["selectList"])

然后用于EditorFor构建下拉列表:

@Html.EditorFor(m => m.State, "SelectList", new { selectList = Model.States })

它失败并出现以下错误:

'System.Web.Mvc.HtmlHelper<string>' does not contain a definition for 
'DropDownListFor' and the best extension method overload 
'System.Web.Mvc.Html.SelectExtensions.DropDownListFor<TModel,TProperty>
(System.Web.Mvc.HtmlHelper<TModel>, 
System.Linq.Expressions.Expression<System.Func<TModel,TProperty>>, 
System.Collections.Generic.IEnumerable<System.Web.Mvc.SelectListItem>)' 
has some invalid arguments

我很难理解这两者之间的区别。我尝试了各种解决方法来进行故障排除,要么得到相同的错误,要么出现其他错误。

提前致谢。

4

1 回答 1

15

没有这样的重载:

@Html.DropDownListFor(m => m, ViewData["selectList"])

助手的第二个参数DropDownListFormusty 是 a SelectList。所以:

@Html.DropDownListFor(m => m, (SelectList)ViewData["selectList"])
于 2011-06-12T08:07:27.230 回答