3

我希望能够显示当前节点的父节点的标题。

网站地图:

    <mvcSiteMapNode title="Main Site Tile" controller="Home" action="Index">
  <mvcSiteMapNode title="Some site section" controller="Section" action="Index">
    <mvcSiteMapNode title="Some page" controller="Section" action="Page1" />
    <mvcSiteMapNode title="Some other page" controller="Section" action="Page2" />
  </mvcSiteMapNode>
</mvcSiteMapNode>

因此,在“Page1”上,我可以使用以下方法显示标题(某些页面):

Html.MvcSiteMap().SiteMapTitle()

伟大的。但是,我还想在我的 _Layout 页面中显示父节点(某些站点部分)的标题,因此如果我正在查看“Page1”或“Page2”(或者实际上嵌套在其中的任何视图),这将看起来相同。

这可能吗?

4

1 回答 1

6

您可以使用 SiteMapTitle 属性执行此操作,并将 Target 设置为 ParentNode。

[MvcSiteMapProvider.Web.Mvc.Filters.SiteMapTitle("SomeKey", Target = AttributeTarget.ParentNode]
public ViewResult Show(int blogId) { 
   ViewData["SomeKey"] = "This will be the title";

   var blog = _repository.Find(blogId); 
   return View(blog); 
}

这将在 Menu 和 SiteMapPath 中设置链接的标题。

您还可以使用静态 SiteMaps 对象以编程方式访问节点。

var theTitle = MvcSiteMapProvider.SiteMaps.Current.CurrentNode.ParentNode.Title;

或者,您可以使用该FindSiteMapNodeFromKey("theKey")方法在 SiteMap 中查找任何节点以获取其标题。

于 2013-11-05T06:04:37.570 回答