我可以在返回html的自定义Tag Helper中使用Tag Helper吗? [英] Can I use a Tag Helper in a custom Tag Helper that returns html?

查看:94
本文介绍了我可以在返回html的自定义Tag Helper中使用Tag Helper吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我最近遇到了一种情况,我想在标签助手中使用标签助手.我环顾四周,找不到其他人要这样做,是我使用的约定不当还是缺少文档?

I recently ran into a situation where I would like to use a tag helper within a tag helper. I looked around and couldn't find anyone else trying to do this, am I using a poor convention or am I missing documentation?

例如标记助手A 输出包含另一个标记助手的HTML.

Ex. Tag Helper A outputs HTML that contains another tag helper.

例如

[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?

Is there a way for me to process the <a asp-action> </a> tag helper from C#? Or to reprocess the output HTML with tag helpers?

推荐答案

不,您不能. TagHelpers是Razor解析时间功能.

No you cannot. TagHelpers are a Razor parse time feature.

一种替代方法是创建TagHelper并手动调用其ProcessAsync/Process方法.又名:

One alternative is creating a TagHelper and manually invoking its ProcessAsync/Process method. Aka:

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);

这篇关于我可以在返回html的自定义Tag Helper中使用Tag Helper吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆