我将尝试使用以下两种方法中的任何一种,
1.使用自定义编辑器模板
假设我们要将MyModel
数组显示为下拉列表,并将属性SomeProperty1
显示SomeProperty2
为<option>元素中的数据属性。
public class MyModel
{
public int Id { get; set; }
public string Value { get; set; }
public string SomeProperty1 { get; set; }
public string SomeProperty2 { get; set; }
}
// CustomSelectList.cshtml (editor template)
@model MyModel[]
<select>
@foreach (var i in Model)
{
<option name="@i.Id" data-attr-1="@i.SomeProperty1" data-attr-2="@i.SomeProperty2">@i.Value</option>
}
</select>
2. 使用模板化的 Razor 代理
public static class RazorExtensions
{
public static HelperResult List<T>(this IEnumerable<T> items,
Func<T, HelperResult> template)
{
return new HelperResult(writer =>
{
foreach (var item in items)
{
template(item).WriteTo(writer);
}
});
}
}
// Model is MyModel[]
<select>
@Model.List(@<option name="@item.Id" data-attr-1="@item.SomeProperty1" data-attr-2="@item.SomeProperty2">@item.Value</option>)
</select>