我希望有人能够帮助我解决这个问题,我一直在绞尽脑汁试图弄清楚 - 通过 stackoverflow 阅读今天和昨天的大部分内容,但它还不止于此。
这是我从 cms 生成的 xml。
<Navigation Type="Children" Name="LeftNavigation" label="Left Navigation">
<Page ID="x13" URL="x13.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="Cars" />
<Page ID="x12" URL="x12.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-1">
<Page ID="x27" URL="x27.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-2" />
<Page ID="x28" URL="x28.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-3" />
<Page ID="x31" URL="x31.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-4" />
</Page>
-
<Page ID="x14" URL="x14.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="Books">
<Page ID="x32" URL="x32.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-2" />
<Page ID="x33" URL="x33.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-3" />
<Page ID="x34" URL="x34.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-4" />
<Page ID="x35" URL="x35.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-5" />
<Page ID="x36" URL="x36.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-6" />
<Page ID="x37" URL="x37.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-7" />
<Page ID="x38" URL="x38.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-8" />
<Page ID="x39" URL="x39.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-9" />
<Page ID="x40" URL="x40.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-10" />
<Page ID="x41" URL="x41.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-11" />
</Page>
<Page ID="x15" URL="x15.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="Clothes" />
-
<Page ID="x47" URL="x47.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="Toys">
<Page ID="x49" URL="x49.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-1" />
<Page ID="x48" URL="x48.xml" Schema="ContentPage" Locale="en-us" CategoryIds="" Name="subsection-2" />
</Page>
</Navigation>
我试图做的是创建一个左导航,只列出它的孩子或那个父母的兄弟姐妹。
所以我一直在尝试这样的事情:
<xsl:variable name="currentPage">
<xsl:value-of select="//ContentPage/@ID"/>
</xsl:variable>
首先,我创建了一个变量,它可以找出我在哪里并获取属性 ID。
<xsl:template name="navigation">
<ul id="oc-left-nav">
<xsl:apply-templates select="//@ID='$currentPage' | parent::()" />
</ul>
</xsl:template>
因此,这部分是我试图说的:选择 ID 等于我的变量的页面,或者如果您是兄弟姐妹,则列出该父级下的所有兄弟姐妹。但正如你所看到的,我不知道如何写。
<xsl:template match="//@ID[.='$currentPage'] | parent::()">
<xsl:for-each select="Page">
<li class="oc-navlink">
<a>
<xsl:attribute name="href">
<xsl:value-of select="@URL"/>
</xsl:attribute>
<xsl:value-of select="@Name"/>
</a>
</li>
</xsl:for-each>
</xsl:template>
归根结底,我需要一个相对于您是其后代的父页面的所有子项的动态列表。好吧,这是希望。我会继续努力的。