我最近遇到了一种情况,我想在标签帮助器中使用标签助手。我环顾四周,无法找到其他人试图这样做,我使用的是一个糟糕的惯例,还是我缺少文档?
实施例。 Tag Helper A 输出包含另一个标记助手的HTML。
实施例。
[HtmlTargetElement("tag-name")]
public class RazorTagHelper : TagHelper
{
public override void Process(TagHelperContext context, TagHelperOutput output)
{
StringBuilder sb = new StringBuilder();
sb.Append("<a asp-action=\"Home\" ");
output.Content.SetHtmlContent(sb.ToString());
}
}
我有办法从C#处理<a asp-action> </a>
标记助手吗?或者使用标记帮助程序重新处理输出HTML?
答案 0 :(得分:14)
不,你不能。 TagHelpers是一个Razor解析时间功能。
另一种方法是创建TagHelper并手动调用其ProcessAsync / Process方法。又名:
var anchorTagHelper = new AnchorTagHelper
{
Action = "Home",
};
var anchorOutput = new TagHelperOutput("a", new TagHelperAttributeList(), (useCachedResult, encoder) => new HtmlString());
var anchorContext = new TagHelperContext(
new TagHelperAttributeList(new[] { new TagHelperAttribute("asp-action", new HtmlString("Home")) }),
new Dictionary<object, object>(),
Guid.NewGuid());
await anchorTagHelper.ProcessAsync(anchorContext, anchorOutput);
output.Content.SetHtmlContent(anchorOutput);
答案 1 :(得分:4)
我不知道这是否适合您的方案,但是可以从AnchorTagHelper继承,然后像这样进行自定义。
public class TestTagHelper : AnchorTagHelper
{
public TestTagHelper(IHtmlGenerator htmlGenerator) : base(htmlGenerator) { }
public async override Task ProcessAsync(TagHelperContext context, TagHelperOutput output)
{
// Replaces <test> with <a> tag
output.TagName = "a";
// do custom processing
output.Attributes.SetAttribute("class", "custom-class");
// let the base class generate the href
// note the base method may override your changes so it may be
// preferable to call it first instead of last.
await base.ProcessAsync(context, output);
}
}
然后,您可以在视图中使用此标记帮助程序,并具有默认AnchorTagHelper
的所有内置优点。
<test asp-action="Index" asp-route-id="5"></test>
答案 2 :(得分:1)
如果有人想要重用asp.net核心的内置标记助手,你可以使用IHtmlGenerator。为了重用其他类型的标签助手,我还没有找到比N更简单的选项。泰勒马伦回答
以下是如何重用asp-action标记助手:
[HtmlTargetElement("helplink")]
public class RazorTagHelper : TagHelper
{
private readonly IHtmlGenerator _htmlGenerator;
public RazorTagHelper(IHtmlGenerator htmlGenerator)
{
_htmlGenerator = htmlGenerator;
}
[ViewContext]
public ViewContext ViewContext { set; get; }
public override void Process(TagHelperContext context, TagHelperOutput output)
{
output.TagName = "div";
output.TagMode = TagMode.StartTagAndEndTag;
var actionAnchor = _htmlGenerator.GenerateActionLink(
ViewContext,
linkText: "Home",
actionName: "Index",
controllerName: null,
fragment: null,
hostname: null,
htmlAttributes: null,
protocol: null,
routeValues: null
);
var builder = new HtmlContentBuilder();
builder.AppendHtml("Here's the link: ");
builder.AppendHtml(actionAnchor);
output.Content.SetHtmlContent(builder);
}
}