在TagHelpers中获取属性属性

本文关键字:属性 获取 TagHelpers | 更新日期: 2023-09-27 18:17:10

一些模型属性有"Required"数据注释,我需要在TagHelper类中读取。

public partial class Sale
{
    [Required]
    public string CustomerId { get; set; }
    ...

在销售视图中,我为customer创建了一个自定义选择:

<customer asp-for="CustomerId " value="@Model.CustomerId"></customer>

在CustomerTagHelper类中有一个进程方法:

public override void Process(TagHelperContext context, TagHelperOutput output)
{

我怎么能发现在这一点上,如果当前绑定属性有"required"属性?我用的是asp.net core

在TagHelpers中获取属性属性

您可以通过ModelExpression访问自定义属性。

public class CustomTagHelper : TagHelper
{
    [HtmlAttributeName("asp-for")]
    public ModelExpression For { get; set; }
    public override void Process(TagHelperContext context, TagHelperOutput output)
    {            
        CustomAttribute attribute = For.Metadata
                                       .ContainerType
                                       .GetProperty(For.Name)
                                       .GetCustomAttribute(typeof(CustomAttribute)) 
                                       as CustomAttribute;
        if (attribute != null)
        {
            output.Attributes.Add("some-attr", attribute.Text);
        }
    }
}

然后在你的模板<custom asp-for="SomeProp"></custom>中使用它

除了您为其属性提供的输入之外,标签帮助器不知道任何其他信息。因此,您希望创建一个标记帮助器,可以像下面这样使用:

@model WebApplication4.Models.Sale
...
<customer asp-for="CustomerId" />

然后声明与asp-for属性相关联的ModelSource类型的属性。这将使您不仅可以访问属性的值,还可以访问元数据,如以下(以及更多!):

  • 属性值:source.Model
  • 属性名称:source.Name
  • 集装箱型号:source.Metadata.ContainerType
  • IsRequired标志: source.Metadata.IsRequired

你还可以在VS中获得智能感知,选择模型中的一个属性用于asp-for模型,如果该值不是模型属性的名称,它将抛出错误。


作为一个例子,看一下这个标签帮助器:

public class CustomerTagHelper: TagHelper
{
    [HtmlAttributeName("asp-for")]
    public ModelExpression Source { get; set; }
    public override void Process(TagHelperContext context, TagHelperOutput output)
    {
        output.TagName = "p";
        output.TagMode = TagMode.StartTagAndEndTag;
        var contents = $@"
            Model name: {Source.Metadata.ContainerType.FullName}<br/>
            Property name: {Source.Name}<br/>
            Current Value: {Source.Model}<br/> 
            Is Required: {Source.Metadata.IsRequired}";
        output.Content.SetHtmlContent(new HtmlString(contents));
    }
}

如果你有这两个模型:

public class Sale
{
    [Required]
    public string CustomerId { get; set; }
}
public class Promotion
{        
    public string CustomerId { get; set; }
}

在这两个操作和视图中使用:

public IActionResult Sale()
{
    return View();
}
@model WebApplication4.Models.Sale
...
<customer asp-for="CustomerId" />

public IActionResult Promotion()
{
    return View(new Models.Promotion { CustomerId = "abc-123" });
}
@model WebApplication4.Models.Promotion
...
<customer asp-for="CustomerId" />

将产生以下输出:

Tag helper for: WebApplication4.Models.Sale
Property name: CustomerId
Current Value: 
Is Required: True
Model name: WebApplication4.Models.Promotion
Property name: CustomerId
Current Value: abc-123
Is Required: False

你可以这样做:

    var type = typeof(YOUR_CLASS);
    var property = type.GetProperty("FIELD_NAME");
    var isRequired = Attribute.IsDefined(property, typeof(Required));