gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 00:32:39 25 4
gpt4 key购买 nike

我想使用“key”之类的属性从 Mvc.sitemap 文件中获取 url?我想从 helper 那里打电话。我只是不知道如何使用 mvcsitemap 类从文件中检索节点以生成 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 和标题编写完整的 anchor 链接。

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

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

关于c# - 如何使用 MvcSiteMapProvider 从 Mvc.sitemap 获取节点的 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9575936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com