如何使 MvcSitemapNode 仅在 google 站点地图中可见,但在菜单中不可见

发布于 2024-12-13 09:59:56 字数 257 浏览 3 评论 0原文

我想让 Mvc.sitemap 中的一些节点仅在 google sitemap 中可见,不需要在菜单中显示它们。

我有什么办法可以实现这一目标吗?

也许我需要以某种方式使用属性 可见性

任何想法?

I want to make some some nodes in my Mvc.sitemap to be visible only in google sitemap, there is no needs to display them in menu.

Is there any way i can achieve that?

Probably i need somehow to play with attribute visibility

Any thoughts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很快妥协 2024-12-20 09:59:56

正如 GitHub Wiki 上的高级节点可见性中所述,您必须将可见性提供程序更改为 FilteredSiteMapNodeVisibilityProvider 并将“可见性”添加到 attributeToIgnore:

<siteMap defaultProvider="MvcSiteMapProvider" enabled="true"> 
    <providers> 
        <clear /> 
        <add name="MvcSiteMapProvider" 
          type="MvcSiteMapProvider.DefaultSiteMapProvider, MvcSiteMapProvider" 
          ...
          attributesToIgnore="visibility" 
          ...
          siteMapNodeVisibilityProvider="MvcSiteMapProvider.FilteredSiteMapNodeVisibilityProvider, MvcSiteMapProvider"
        /> 
    </providers> 
</siteMap>

完成此操作后,您必须将可见性属性添加到要隐藏的所有节点。该属性应设置为:

<mvcSiteMapNode title="Only in SiteMap" ... visibility="XmlSiteMapResult,!*" />

As described in the Advanced Node Visibility on the GitHub Wiki, you have to change the visibility provider to FilteredSiteMapNodeVisibilityProvider and add "visibility" to attributesToIgnore:

<siteMap defaultProvider="MvcSiteMapProvider" enabled="true"> 
    <providers> 
        <clear /> 
        <add name="MvcSiteMapProvider" 
          type="MvcSiteMapProvider.DefaultSiteMapProvider, MvcSiteMapProvider" 
          ...
          attributesToIgnore="visibility" 
          ...
          siteMapNodeVisibilityProvider="MvcSiteMapProvider.FilteredSiteMapNodeVisibilityProvider, MvcSiteMapProvider"
        /> 
    </providers> 
</siteMap>

When this have been done you have to add the visibility attribute to all the nodes you want to hide. The attribute should be set to:

<mvcSiteMapNode title="Only in SiteMap" ... visibility="XmlSiteMapResult,!*" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文