从 Web 部件读取 SharePoint 中的全局导航
是否可以读取所有子站点的全局导航并显示应位于母版页中的 Web 部件中的项目(链接或类别)?
不要忘记全局导航可以在设置中编辑,所以我不能只在页面和子站点上循环。 :(
Is it possible to read the Global Navigation of all the sub sites and display the items (links or category) from a Web Part that should be in a master page?
Don't forget that the global navigation can be edited in the settings, so I can't just loop on pages and sub sites. :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下方式阅读导航:
SPNavigationNodeCollection navNodes = web.Navigation.QuickLaunch;
You can read the navigation using :
SPNavigationNodeCollection navNodes = web.Navigation.QuickLaunch;