关于MVC中DropDownListFor的一个bug

时间:2023-03-08 16:18:19

如以下代码:

 //后台 代码
ViewData["source_type"] = new List<SelectListItem>
{
new SelectListItem() {Text = "测试1", Value = ""},
new SelectListItem() {Text = "测试2", Value = ""},
new SelectListItem() {Text = "测试3", Value = ""},
new SelectListItem() {Text = "测试4", Value = ""}
};
return View(new thr_channel_commodity_report { source_type = });
//前台代码:
@Html.DropDownListFor(x=>x.source_type,ViewData["source_type"] as IEnumerable<SelectListItem>)

使用ViewDate传递数据 并使用“source_type”这个名称 导致页面的下拉框不能正确显示 当前model值

原因:

源码 最底层这个方法 :
private static MvcHtmlString SelectInternal(this HtmlHelper htmlHelper, string optionLabel, string name, IEnumerable<SelectListItem> selectList, bool allowMultiple, IDictionary<string, object> htmlAttributes)
其中有段代码:
if (!usedViewData) {
if (defaultValue == null) {
defaultValue = htmlHelper.ViewData.Eval(fullName);
}
}
其中的
htmlHelper.ViewData.Eval(fullName);

这个Eval 存在问题。 当使用ViewData传递数据时候 而且和第一个参数表达式名称相同时   此段代码 获取的值为:整个数组 所以 。。。 如果你使用ViewData["source_type2"]只要和表达式名字不相同即可

建议:

1、不要使用ViewData或者ViewBag传递数据给DropDownList

2、如果必须使用ViewData请使用 名称非表达式名称

相关文章