0

我的输出 xml 应该基于变量 flag 被一些元素掩盖。如果 flag 的值为“1”,则输出 xml 应该只有元素“a”(包括其所有属性和子元素)。如果标志为 2,则输出 xml 应包含元素 a 和 b。如果为 3,则输入中存在的所有元素和属性都应存在于输出中

我的输入xml

<Root>

<a ref="t">
<s id="2">value</s>
</a>
<b ref="t">
<s id="2">value</s>
</b>
<c ref="t">
<s id="2">value</s>
</c>
</Root>

我想要的输出(当标志为 1 时)

<Root>

<a ref="t">
<s id="2">value</s>
</a>
</Root>

xslt 我试过了

<xsl:stylesheet version="1.0"

xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:variable name="flag" select="'1'"/>


<xsl:strip-space elements="*"/>

<xsl:template match="node()|@*">

<xsl:copy>

<xsl:apply-templates select="node()|@*"/>

</xsl:copy>

</xsl:template>

<xsl:if test ="$flag ='1'">
<xsl:template match="b"></xsl:template>
<xsl:template match="c"></xsl:template>
</xsl:if>

</xsl:stylesheet>
4

1 回答 1

0

下面的 xslt 正在工作。

<xsl:stylesheet version="1.0"

xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:variable name="flag" select="'1'"/>


<xsl:strip-space elements="*"/>

<xsl:template match="node()|@*">

<xsl:copy>

<xsl:apply-templates select="node()|@*"/>

</xsl:copy>

</xsl:template>


<xsl:template match="b">
<xsl:if test="$flag ='3' or $flag='2'">
  <xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:if>
</xsl:template>

<xsl:template match="c">
<xsl:if test="$flag ='3'">
  <xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:if>
</xsl:template>

</xsl:stylesheet>
于 2012-06-14T11:15:19.597 回答