我编写了一个 EnumDropDownFor() 助手,我想将它与 EditorFor() 一起使用。我才刚刚开始使用 EditorFor(),所以对如何选择模板有点困惑。
我的 Enum.cshtml 编辑器模板如下:
<div class="editor-label">
@Html.LabelFor(m => m)
</div>
<div class="editor-field">
@Html.EnumDropDownListFor(m => m)
@Html.ValidationMessageFor(m => m)
</div>
如果没有明确定义要使用的模板,是否有任何方法可以在将枚举传递给 EditorFor() 时使用默认模板?