asp.net-mvc – ASP.NET MVC 2 – Html.DropDownList与ViewModel混淆

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.NET MVC 2 – Html.DropDownList与ViewModel混淆前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我完全迷失了,如何使用新的强类型Html.DropDownListFor帮助ASP.NET MVC 2.0 R2

在视图中我写:

<%= Html.DropDownListFor(m => m.ParentCategory,new SelectList(Model.Categories,"CategoryId","Name",Model.ParentCategory),"[ None ]")%>

<%= Html.ValidationMessageFor(m => m.ParentCategory)%>

因此我的Model对象是:

public class CategoryForm : FormModelBase
{
    public CategoryForm()
    {
        Categories = new List<Category>();

        Categories.Add(new CategoryForm.Category() {
                           CategoryId = 1,Name = "cpus" });
        Categories.Add(new CategoryForm.Category() { 
                           CategoryId = 2,Name = "Memory" });
        Categories.Add(new CategoryForm.Category() { 
                           CategoryId = 3,Name = "Hard drives" });
    }

    // ...other props,snip... //

    public Category ParentCategory { get; set; }

    public IList<Category> Categories { get; protected set; }

    public class Category
    {
        public int? CategoryId { get; set; }
        public string Name { get; set; }
    }
}

问题是,当我从下拉列表中选择一个项目,说第一个项目,我得到以下ValidationMessageFor错误“值’1’无效。

所以我将视图更改为…

<%= Html.DropDownListFor(m => m.ParentCategory.**CategoryId**,new SelectList .../ snip  ) %>

现在它工作,有点。我的viewmodel中的ParentCategory属性设置了正确的“CategoryId”,但“Name”为NULL。我最好只有一个可空的int ParentCategory属性,而不是一个强类型的’类’对象?

解决方法

我也遇到了同样的问题。

当我调试Action并看看ModelState.Values [1] .Errors [0] .Exception例如,我看到以下:

{“The parameter conversion from type ‘System.String’ to type ‘System.Collections.Generic.KeyValuePair`2[[System.String,mscorlib,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089],[System.Int64,PublicKeyToken=b77a5c561934e089]]’ Failed because no type converter can convert between these types.”} System.Exception {System.InvalidOperationException}

在我的场景中,我的SelectList是从字典创建的,我在我的视图中使用:

<%=Html.DropDownListFor(x => x.MyDictionary,new SelectList(
                                 Model.MyDictionary,"Value","Key")) %>

当我把它改为:

<%=Html.DropDownListFor(x => x.MyDictionary.Keys,// <-- changed to .Keys
                             new SelectList(
                                 Model.MyDictionary,"Key")) %>

它工作没有问题。

谢谢。

原文链接:https://www.f2er.com/aspnet/254849.html

猜你在找的asp.Net相关文章