3

我在发布表单时遇到了上述错误,我认为导致错误的根本原因是“DropDownListFor”,其中多次调用了 SelectList,如果是,请提出解决方案?

如果我从“x=>x.Values”更改为“x=>x.Name”,那么还会出现错误“没有具有键 'DDLView.Name' 的 'IEnumerable' 类型的 ViewData 项。”

编辑器模板

@model DropDownListViewModel

@Html.LabelFor(x=>x.Values, Model.Label)
@Html.DropDownListFor(x=>x.Values, Model.Values)

查看模型

public class HomePageViewModel
{
    public DropDownListViewModel DDLView { get; set; }
}

public class DropDownListViewModel
{
    public string Label { get; set; }
    public string Name { get; set; }
    public SelectList Values { get; set; }
}

控制器

public ActionResult Index()
    {
        HomePageViewModel homePageViewModel = new HomePageViewModel();

        homePageViewModel.DDLView = new DropDownListViewModel
                                        {
                                            Label = "drop label1",
                                            Name = "DropDown1",
                                            Values = new SelectList(
                                                         new[]
                                                             {
                                                                 new {Value = "1", Text = "text 1"},
                                                                 new {Value = "2", Text = "text 2"},
                                                                 new {Value = "3", Text = "text 3"},
                                                             }, "Value", "Text", "2"
                                                         )
                                        };
}

[HttpPost]
    public ActionResult Index(HomePageViewModel model)
    {
        return View(model);
    }

看法

@model Dynamic.ViewModels.HomePageViewModel
@using (Html.BeginForm())
{
@Html.EditorFor(x=>x.DDLView)


<input type="submit" value="OK" />

}

4

1 回答 1

3

问题是 SelectList 没有无参数构造函数,模型绑定器无法实例化它,但您正试图将其发回。

要解决您的问题,请在实施中更改 2 件事:

1)更改编辑器模板

 @Html.DropDownListFor(x=>x.Values, Model.Values) 

 @Html.DropDownListFor(x=>x.ValueId, Model.Values) 

2)在你原来的 DropDownListViewModel 旁边添加

[ScaffoldColumn(false)]
public string ValueId { get; set; }

现在您的 post action 参数将填充正确的值。

于 2012-07-11T22:04:22.663 回答