是否可以在 RegisterRoutes 方法中解析我的 MVC.sitemap 的所有节点?当我尝试时,我只看到根节点(家)。没有孩子……这是我的站点地图。
<mvcSiteMap xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0"
xsi:schemaLocation="http://mvcsitemap.codeplex.com/schemas/MvcSiteMap-File-3.0 MvcSiteMapSchema.xsd"
enableLocalization="true">
<mvcSiteMapNode controller="Home" action="Index" resourceKey="home">
<mvcSiteMapNode controller="Home" action="About" resourceKey="about"/>
<mvcSiteMapNode controller="Home" action="Contact" resourceKey="contact"/>
</mvcSiteMapNode>
</mvcSiteMap>