我有一个场景,我想从复选框列表中选择 3 个项目。这很好用,但如果复选框列表变长,页面看起来很笨拙。所以我想将其更改为 3 个下拉列表。所以页面要小得多,但没有一个下拉列表尊重所选值。
所以我尝试了这样的代码
@Html.DropDownListFor(model => model.CheckedLarcenyTypes, new SelectList(Model.LarcenyTypes, "Key", "Value", Model.CheckedLarcenyTypes.Length > 0 ? Model.CheckedLarcenyTypes[0] : null as Int32?), String.Empty, new { id = "Larceny1" })
@Html.DropDownListFor(model => model.CheckedLarcenyTypes, new SelectList(Model.LarcenyTypes, "Key", "Value", Model.CheckedLarcenyTypes.Length > 1 ? Model.CheckedLarcenyTypes[1] : null as Int32?), String.Empty, new { id = "Larceny2" })
@Html.DropDownListFor(model => model.CheckedLarcenyTypes, new SelectList(Model.LarcenyTypes, "Key", "Value", Model.CheckedLarcenyTypes.Length > 2 ? Model.CheckedLarcenyTypes[2] : null as Int32?), String.Empty, new { id = "Larceny3" })
现在下拉菜单已正确创建,并且正确的值正在绑定,并且在 POST 上,我看到值在视图模型中被发回。
我只是无法让选择值显示在下拉列表中。重新加载页面后,下拉菜单仍然是空白的。
我在这里做错了什么?这甚至可能吗?