如何使用MvcSiteMapProvider从Mvc.sitemap获取节点的url

本文关键字:获取 节点 url sitemap Mvc 何使用 MvcSiteMapProvider | 更新日期: 2023-09-27 18:26:42

我想使用类似"key"的属性从Mvc.sitemap文件中获取url?我想从一个助手那里调用它。我只是不知道如何使用mvcsitemap类从文件中检索节点来生成url。提前感谢!

如何使用MvcSiteMapProvider从Mvc.sitemap获取节点的url

2小时后,总共4小时:

public static class MyHelpers
{
    private static Dictionary<string, object> SourceMetadata = new Dictionary<string, object> { { "HtmlHelper", typeof(MenuHelper).FullName } };
    public static MvcSiteMapNode GetNodeByKey(this MvcSiteMapHtmlHelper helper, string nodeKey)
    {
        SiteMapNode node = helper.Provider.FindSiteMapNodeFromKey(nodeKey);
        var mvcNode = node as MvcSiteMapNode;
        return mvcNode;
    }
}

现在,您只需要调用@Html.MvcSiteMap().GetNodeByKey("mykey").Url

不仅url,所有其他属性(title、ImageUrl、targetFrame..)都可用,您还可以创建一个助手来使用url和title编写完整的锚链接。

更新:如果你想知道,这里是链接助手的代码:

public static MvcHtmlString MapLink(this MvcSiteMapHtmlHelper htmlHelper, string nodeKey)
    {
        return htmlHelper.MapLink(nodeKey, null, null);
    }
    public static MvcHtmlString MapLink(this MvcSiteMapHtmlHelper htmlHelper, string nodeKey, string linkText)
    {
        return htmlHelper.MapLink(nodeKey, linkText, null);
    }
    public static MvcHtmlString MapLink(this MvcSiteMapHtmlHelper htmlHelper, string nodeKey, string linkText, object htmlAttributes)
    {
        MvcSiteMapNode myNode = GetNodeByKey(htmlHelper, nodeKey);
        //we build the a tag
        TagBuilder builder = new TagBuilder("a");
        // Add attributes
        builder.MergeAttribute("href", myNode.Url);
        if (htmlAttributes != null)
        {
            builder.MergeAttributes(new RouteValueDictionary(htmlAttributes), true);
        }
        if (!string.IsNullOrWhiteSpace(linkText))
        {
            builder.InnerHtml = linkText;
        }
        else
        {
            builder.InnerHtml = myNode.Title;
        }
        string link = builder.ToString();
        return  MvcHtmlString.Create(link);
    }