0

我希望有人能够帮助我解决这个问题,我一直在绞尽脑汁试图弄清楚 - 通过 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>

归根结底,我需要一个相对于您是其后代的父页面的所有子项的动态列表。好吧,这是希望。我会继续努力的。

4

1 回答 1

0

我无法理解您要做什么,但我当然可以为您做一些观察:

你说“所以这部分是我试图说的:选择页面......”

后跟一个返回 @ID 节点的模板匹配...

xsl:template match="//@ID ..

对“@ID”属性的子“Page”元素执行 for-each 肯定不会返回任何内容。“@ID”属性没有子属性。

其次,将变量 currentPage 的值设置为 //ContentPage/@ID。我什至没有在您的示例 XML 中看到元素 ContentPage。除非您没有在此处显示所有相关内容,否则此变量将为空。

我想我知道你想要什么输出,但也许你可以发布你期望得到的东西,这样我们就不必猜测了。

于 2013-06-19T04:29:43.870 回答