作者:叶子1209 | 来源:互联网 | 2023-09-25 12:08
直接贴代码了:
public static class EnumerableExtension
{
///
/// 生成用于 ASP.NET Mvc 中 DropDownListFor 的 SelectListItem 可枚举的集合
///
/// 类型
/// 集合
/// 得到下拉框的 Text 的委托
/// 得到下拉框的 Value 的委托
/// 选中的值。建议不要设置与模型状态不一致的值,比如当前提交的下拉框中的值为 1,您如果设置 2,那么还是会显示 1,因为 Mvc 默认会从当前上下文中取值
/// 初始化项,可为 null
///
public static IEnumerable ToDropDownListItems(this IEnumerable source, Funcstring> funText, Funcstring> funValue, string selectedValue, IDictionary<string, string> initItems = null)
{
if (initItems != null && initItems.Count > 0)
{
foreach (var item in initItems)
{
SelectListItem resultItem = new SelectListItem
{
Text = item.Key,
Value = item.Value,
Selected = item.Value == selectedValue
};
yield return resultItem;
}
}
if (source != null)
{
IEnumerator sourceIterator = source.GetEnumerator();
while (sourceIterator.MoveNext())
{
T entityItem = sourceIterator.Current;
yield return new SelectListItem
{
Text = funText(entityItem),
Value = funValue(entityItem),
Selected = funValue(entityItem) == selectedValue
};
}
}
}
}
简单调用:
ViewBag.dropDownListForNewsType = list.ToDropDownListItems(m => m.Name, m => m.Id.ToString(), viewModel.NewsType.ToString());
复杂调用:
ViewBag.dropDownListForParentId = listCategories.ToDropDownListItems(
m => m.DepthLevel <= 1 ? (m.Name) : ("|" + new string('-', m.DepthLevel * m.DepthLevel) + m.Name),
m => m.Id.ToString(),
viewModel.ParentId.ToString(),
new Dictionary<string, string>() { { "===请选择===", "0" } }
);
运行效果图:
简单调用的运行效果图:
复杂调用的运行效果图: