0

输入:

    <book>
     <chapter href="..">
      <topicref chunk="to-content" href"..">

      </topicref>
      <topicref chunk="to-content" href"..">

      </topicref>
     </chapter>
    </book>    

输出:

    <book>
     <chapter chunk="to-content" href="..">
      <topicref href"..">

      </topicref>
      <topicref href"..">

      </topicref>
     </chapter>
    </book> 

我不能使用xsl:attribute name="chunk">to-content</xsl:attribute>,因为它会抛出“如果先前的指令创建任何子项,则在此处创建属性将失败。” 警告然后错误。我理解如此所述。任何解决方法?

将 XSLT 2.0 与 Saxon 9 一起使用。(只是掌握 XSLT/SO 的窍门)。抱歉,如果这太宽泛了,但是任何方向的帮助都将不胜感激。

4

2 回答 2

1

为了向chapter元素添加属性,最好有一个与chapter元素匹配的模板 - 大致如下:

<xsl:template match="chapter">
    <xsl:copy>
        <xsl:attribute name="chunk">to-content</xsl:attribute>
        <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
</xsl:template>

同样,要从 中删除chunk属性topicref

<xsl:template match="topicref/@chunk"/>
于 2015-07-29T16:25:39.173 回答
0

尝试这个:

<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="chapter">
  <xsl:copy>
    <!-- If the chapter contains a topicref with chunk="to-content", set chunk to-content on the chapter unless it's already there.-->
    <xsl:if test=".//topicref/@chunk = 'to-content' and not(@chunk='to-content')">
      <xsl:attribute name="chunk">to-content</xsl:attribute>
    </xsl:if>
    <!-- Copy all chapter attributes -->
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

<xsl:template match="topicref">
  <xsl:copy>
    <!-- Copy every attribute except chunk="to-content" -->
    <xsl:copy-of select="@*[not(name() = 'chunk' and . = 'to-content')]"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

<xsl:template match="*">
  <xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>
于 2015-08-01T21:02:04.800 回答