DropDownList的自定义模型绑定器未选择正确的值

时间:2010-09-04 15:30:58

标签: asp.net asp.net-mvc modelbinders model-binding custom-model-binder

我创建了自己的自定义模型绑定器来处理我视图中定义的Section DropDownList:

Html.DropDownListFor(m => m.Category.Section, new SelectList(Model.Sections, "SectionID", "SectionName"), "-- Please Select --")

这是我的模型活页夹:

public class SectionModelBinder : DefaultModelBinder 
{ 
    public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) 
    { 
        var value = bindingContext.ValueProvider.GetValue(bindingContext.ModelName); 

        if (bindingContext.ModelType.IsAssignableFrom(typeof(Section)) && value != null) 
        { 
            if (Utilities.IsInteger(value.AttemptedValue)) 
                return Section.GetById(Convert.ToInt32(value.AttemptedValue)); 
            else if (value.AttemptedValue == "")
                return null; 
        } 

        return base.BindModel(controllerContext, bindingContext); 
    } 
}

现在在我的控制器中我可以说:

[HttpPost]
public ActionResult Create(FormCollection collection)
{
    var category = new Category();

    if (!TryUpdateModel(category, "Category")
        return View(new CategoryForm(category, _sectionRepository().GetAll()));

    ...
}

这样可以很好地验证,并且在更新模型时会分配该部分的正确值,但如果另一个属性未验证,则不会选择正确的值。

如果有人能告诉我怎么做,我会很感激。感谢

1 个答案:

答案 0 :(得分:0)

问题解决了:

Html.DropDownListFor(m => m.Category.Section, new SelectList(Model.Sections.Select(s => new { Text = s.SectionName, Value = s.SectionID.ToString() }), "Value", "Text"), "-- Please Select --") 

这个问题似乎围绕着IS是一个整数。当你将它转换为字符串时,一切正常。希望这会有所帮助。