作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道这个问题已经被问到了相当多的问题。
here
和
here
但我仍然无法弄清楚问题所在。
我正在开发一个博客来自学 MVC 框架。现在,当我发布下面的 View 时,ListBoxFor 助手不会将任何值绑定(bind)到我的模型。该列表成功包含所有类别,但是当 POST Controller 返回 View 模型时,类别对象为空。
这是 View 模型:
public class PostViewModel
{
public Post Posts { get; set; }
public IEnumerable<Category> Categories { get; set; }
}
public ActionResult Create()
{
PostViewModel post = new PostViewModel();
post.Categories = db.ListCategories();
return View(post);
}
<p>@Html.ListBoxFor(model => model.Categories, new MultiSelectList(Model.Categories, "CategoryID", "CategoryName"))</p>
最佳答案
我相信您的 View 模型中应该有一个数组属性,所选 ID 将绑定(bind)到该属性。
public class PostViewModel
{
public Post Posts { get; set; }
public int[] SelectedCategoryIds { get; set; }
public IEnumerable<Category> Categories { get; set; }
}
Html.ListBoxFor
调用
SelectedCategoryIds
属性(property)。
<p>@Html.ListBoxFor(model => model.SelectedCategoryIds, new MultiSelectList(Model.Categories, "CategoryID", "CategoryName"))</p>
SelectedCategoryIds
创建一个列表框。属性,如果您有列表的标签,则应将其更改为
SelectedCategoryIds
属性(property)也。
@Html.LabelFor(model => model.SelectedCategoryIds, "Categories")
"Categories"
是标签文本)
关于asp.net - ListBoxFor 没有绑定我的 View 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7966201/
我是一名优秀的程序员,十分优秀!