我想知道是否有人可以帮助演示如何在asp.net内核中创建ihtmlcontent或htmlstring,类似于我以前在mvc5中所做的。我通常会在helper类中声明一个新的mvchtmlstring方法,如下所示:
htmlextender.cs公司

using System.Text;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

namespace WebApplication1.Helpers
{
    public static class HtmlExtender
    {
        public static MvcHtmlString MenuLink(this HtmlHelper htmlHelper, string linkText, string controller, string action, string area, string anchorTitle)
        {
            var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);

            var url = urlHelper.Action(action, controller, new { area });

            var anchor = new TagBuilder("a") {InnerHtml = HttpUtility.HtmlEncode(linkText)};
            anchor.MergeAttribute("href", url);
            anchor.Attributes.Add("title", anchorTitle);

            var listItem = new TagBuilder("li") {InnerHtml = anchor.ToString(TagRenderMode.Normal)};

            if (CheckForActiveItem(htmlHelper, controller, action, area))
            {
                listItem.GenerateId("menu_active");
            }

            return MvcHtmlString.Create(listItem.ToString(TagRenderMode.Normal));
        }

        private static bool CheckForActiveItem(HtmlHelper htmlHelper, string controller, string action, string area)
        {
            if (!CheckIfTokenMatches(htmlHelper, area, "area"))
                return false;

            if (!CheckIfValueMatches(htmlHelper, controller, "controller"))
                return false;

            return CheckIfValueMatches(htmlHelper, action, "action");
        }
    }
}

在视图中使用的是@Html.MenuLink("Home", "Home", "Index", "", "Home"),也就是在视图顶部包含@using WebApplication1.Helpers
我不确定如何使用htmlstring或ihtmlcontent来实现我需要的功能,但我的方法需要访问httpcontextaccessor,但我有点不确定如何做到这一点。
我已经在startup.cs中声明了httpcontextaccessor,因为我相信在asp.net core 2.0中,它在默认情况下并没有如下所示声明,但是需要帮助才能在helper方法中使用。
启动.cs
public void ConfigureServices(IServiceCollection serviceCollection)
{
    serviceCollection.AddMvc();
    serviceCollection.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
}

最佳答案

mvc核心中的新原语非常好用。tagbuilder实现了ihtmlcontent,它可以而且应该在当前使用mvchtmlstring的任何地方使用。对于上面的示例,只需删除mvchtmlstring.create并直接返回标记生成器(调整为返回ihtmlcontent)。
其他有用的类是htmlcontentbuilder,另一种返回ihtmlcontent的类型,它可以追加html,类似于stringbuilder,但专门用于html内容。您可以附加许多标记生成器,这非常方便。
理论上这就是您所追求的(我在别处找到了这个geturlhelper扩展,我忘记了在哪里)。

    public static IUrlHelper GetUrlHelper(this IHtmlHelper html)
    {
        var urlFactory = html.ViewContext.HttpContext.RequestServices.GetRequiredService<IUrlHelperFactory>();
        var actionAccessor = html.ViewContext.HttpContext.RequestServices.GetRequiredService<IActionContextAccessor>();
        return urlFactory.GetUrlHelper(actionAccessor.ActionContext);
    }
    public static IHtmlContent MenuLink(this IHtmlHelper htmlHelper, string linkText, string controller, string action, string area, string anchorTitle)
    {

        var urlHelper = htmlHelper.GetUrlHelper();

        var url = urlHelper.Action(action, controller, new { area });

        var anchor = new TagBuilder("a");
        anchor.InnerHtml.Append(linkText);
        anchor.MergeAttribute("href", url);
        anchor.Attributes.Add("title", anchorTitle);

        var listItem = new TagBuilder("li");
        listItem.InnerHtml.AppendHtml(anchor);

        if (CheckForActiveItem(htmlHelper, controller, action, area))
        {
            listItem.GenerateId("menu_active", "_");
        }

        return listItem;
    }

关于c# - 如何在ASP.NET Core中创建MVC5 MvcHtmlString,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45502998/

10-15 11:39