我的输出xml应该根据变量标志用一些元素屏蔽。如果标志的值为"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>
我试过了
<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>
下面的 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>