我想创建一个模型:
public class TestModel
{
Microdata(Data = "data-test=this is a test!")]
public bool Test { get; set; }
}
然后在视图中:
@Html.DisplayForModel()
我正在寻找的结果是这样的:
<label>Test:</label> <input type="checkbox" data-test="this is a test!" />
我已经创建了一个自定义属性类,但这并没有产生任何结果。
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class MicrodataAttribute : Attribute
{
public string Data { get; set; }
public RouteValueDictionary GetAttributes()
{
var attributes = new RouteValueDictionary();
if (this.Data != null)
{
string[] kv = this.Data.Split(',');
attributes.Add(kv[0], kv[1]);
}
return attributes;
}
}
public class MetadataProvider : DataAnnotationsModelMetadataProvider
{
protected override ModelMetadata CreateMetadata(IEnumerable<Attribute> attributes, Type containerType, Func<object> modelAccessor, Type modelType, string propertyName)
{
var metadata = base.CreateMetadata(attributes, containerType, modelAccessor, modelType, propertyName);
var additionalValues = attributes.OfType<HtmlPropertiesAttribute>().FirstOrDefault();
if (additionalValues != null)
{
metadata.AdditionalValues.Add("HtmlAttributes", additionalValues);
}
return metadata;
}
}
答案 0 :(得分:2)
为什么会这样?没有使用您的属性的代码......
阅读下面的博客文章 - 它描述了MVC如何使用元数据,并提供了您需要编写的自定义object
模板的示例:
http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-1-introduction.html
答案 1 :(得分:0)
在与@JakubKonecki讨论问题并阅读他提交的博客文章之后。 这是我的EditTemplate,用于帮助在MVC 2/3中创建数据短划线属性,最有可能是4.
我将此文件保存在root / Views / Shared / EditTemplates下为String.cshtml。 cshtml因为我正在使用剃须刀引擎。如果您使用区域,则位置可能不同,并且它们不必存储在“共享”视图文件夹中。只需阅读整个 博客@JakubKonecki由Brad Wilson发布。
再次感谢@JakubKonecki!
@{
Dictionary<string, object> AV = ViewData.ModelMetadata.AdditionalValues;
Dictionary<string, object> htmlAttr = new Dictionary<string,object>();
foreach (KeyValuePair<string, object> A in AV)
{
if (A.Value is System.Web.Routing.RouteValueDictionary)
{
foreach (KeyValuePair<string, object> B in (System.Web.Routing.RouteValueDictionary)A.Value)
{
htmlAttr.Add(B.Key, B.Value);
}
}
}
htmlAttr.Add("class", "text-box single-line");
htmlAttr.Add("type", "text");
}
@Html.TextBox("", ViewData.TemplateInfo.FormattedModelValue, htmlAttr)