MVC4中的HTML CheckBoxListFor返回空值

时间:2014-05-21 04:23:40

标签: asp.net-mvc-4

我正在使用HTML CheckBoxListFor扩展来显示带复选框的列表并检索所选值。问题是我在控制器中获取空值。

查看代码

@Html.CheckBoxListFor(model => model.PostedStyles, model => model.styles, style => style.Value,style =>style.Text, model => model.selStyles,Position.Horizontal)

视图模型

public IEnumerable<CheckboxStyle> styles { get; set; }
public IEnumerable<CheckboxStyle> selStyles { get; set; }
public PostedStyles PostedStyles { get; set; }

public class CheckboxStyle
    {
        public bool IsSelected { get; set; }
        public int Value { get; set; }
        public string Text { get; set; }
    }

public class PostedStyles
    {
        public string[] StyleIds { get; set; }
    }

控制器代码:

初始加载

public ActionResult Index()
        {

            return View(GetStylesInitialModel());
}
 private CreateLabelViewModel GetStylesInitialModel()
        {
            //setup properties
            var model = new CreateLabelViewModel();
            var selectedFruits = new List<CheckboxStyle>();

            //setup a view model
            model.styles = StyleRepository.GetAll().ToList();
            model.selStyles = selectedFruits;
            return model;
        }

按钮单击

[HttpPost]
        public ActionResult GenerateLabels(PostedStyles postedStyles)
        {

            return View(GetStylesModel(postedStyles));
        }

我在上面postedStyles获取空值。

检查了很多,但没有得到任何相关的东西。请指教。

1 个答案:

答案 0 :(得分:0)

你可以参考以下链接:

http://mvccbl.azurewebsites.net/

希望这有助于......