6

我想知道如何将表单值绑定到多选框中的强类型视图。

显然,当表单提交时,多选框将提交我选择的值的分隔字符串......将此值字符串转换回对象列表以附加到要更新的模型的最佳方法是什么?

public class MyViewModel {
    public List<Genre> GenreList {get; set;}
    public List<string> Genres { get; set; }
}

在控制器内更新我的模型时,我使用如下 UpdateModel:

Account accountToUpdate = userSession.GetCurrentUser();
UpdateModel(accountToUpdate);

但是我需要以某种方式将字符串中的值返回到对象中。

我相信它可能与模型绑定器有关,但我找不到任何好的明确示例来说明如何做到这一点。

谢谢!!保罗

4

2 回答 2

3

你是正确的,模型粘合剂是要走的路。试试这个...

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;

[ModelBinder(typeof(MyViewModelBinder))]
public class MyViewModel {
    ....
}

public class MyViewModelBinder : DefaultModelBinder {
    protected override void SetProperty(ControllerContext context, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value) {
        if (propertyDescriptor.Name == "Genres") {
            var arrVals = ((string[])value)[0].Split(',');
            base.SetProperty(context, bindingContext, propertyDescriptor, new List<string>(arrVals));
        }
        else
            base.SetProperty(context, bindingContext, propertyDescriptor, value);
    }
}
于 2010-12-15T16:33:55.913 回答
0

查看有关该主题的Phil Haacks 博客文章。我在最近的一个项目中将其用作多选强类型视图的基础。

于 2010-12-15T16:24:57.937 回答