asp.net-mvc-3 – 如何在MVC3自定义编辑器模板中获取属性名称

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 如何在MVC3自定义编辑器模板中获取属性名称前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的项目中有一个枚举,我为这个枚举创建了一个自定义编辑器模板。所以,现在我有一个类型的这个枚举的属性,将渲染一个下拉列表。

这很好,但我想用属性名称命名我的下拉菜单中的select元素。这是我的编辑器模板的Razor代码

@model ItemEnumerations.ItemType

    <select id="PropertyNameHere" name="PropertyNameHere">
    @foreach (ItemEnumerations.ItemType in Enum.GetValues(typeof(ItemEnumerations.ItemType))) {
        <option value="@value" @(Model == @value ? "selected=\"selected\"" : "")>@value.ToString()</option>           
    }
    </select>

所以,我选择元素id和name属性的“PropertyNameHere”,我想拥有我的模型的属性名称。这里是一个例子:

我的型号:

public class MyModel{
        public int ItemID {get;set;}
        public string ItemName {get;set;}
        public ItemEnumerations.ItemType MyItemType {get;set;}
    }

我的查看代码

@model MyModel

@Html.LabelFor(m => model.ItemID)
@Html.DisplayForm(m => model.ItemID)

@Html.LabelFor(m => model.ItemName)
@Html.EditorFor(m => model.ItemName)

@Html.LabelFor(m => model.MyItemType )
@Html.EditorFor(m => model.MyItemType )

我想要我的select元素的名称和id为’MyItemType’。

解决方法

我在这里的一本书中找到了答案。其实这让我很近,但是我可以根据我发现的方式google其余的。

这是我需要添加到我的编辑器模板。

@{var fieldName = ViewData.TemplateInfo.HtmlFieldPrefix;}
<select id="@fieldName" name="@fieldName">
原文链接:https://www.f2er.com/aspnet/253932.html

猜你在找的asp.Net相关文章