XSLT:复制具有属性与值匹配的所有属性的元素

时间:2021-06-22 19:00:24

标签: xslt xpath

给定一个如下的 XML 结构:

<Resources PossibleAttribute="SomethingHere">
  <Book ID="1" OtherAttribute="abc" />
  <Book ID="2" DifferentAttribute="def" />
</Resources>

我需要复制结构和元素 ID='1'。所以我希望结束:

<Resources PossibleAttribute="SomethingHere">
  <Book ID="1" OtherAttribute="abc" />
</Resources>

到目前为止我想出的是:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes"/>
  
  <xsl:template match="Resources">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
  </xsl:template>
  <xsl:template match="Book[@ID='1']">
    <xsl:copy>
      <xsl:value-of select="@*|node()" />
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>

然而,这并没有产生预期的最终结果,而是给了我这个:

<Resources>
  <Book>1</Book>
</Resources>

这里的一个关键项目是这些元素中的任何一个都可能包含此处未指定或当前已知的附加属性。因此,如果存在其他属性,也应该复制它们。

如果您能提供任何提示,我们将不胜感激!

1 个答案:

答案 0 :(得分:1)

为什么不简单:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="/Resources">
    <xsl:copy>
        <xsl:copy-of select="@*"/>
        <xsl:copy-of select="Book[@ID=1]"/>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>