我只是想检查是否有任何方法可以避免在 xslt1.0 中像下面这样的冗长编码,其中我们有多个检查条件,输出元素要根据某些条件进行复制。如果条件不成立,则元素本身将不存在于输出中。我问的原因是,我们在 xsl 文件中有很多元素。
我的 xslt
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<xsl:output omit-xml-declaration="yes" indent="yes" />
<xsl:strip-space elements="*" />
<xsl:template match="/">
<Root>
<xsl:if test="Root/a/text() = '1'">
<first>present</first>
</xsl:if>
<xsl:if test="Root/b/text() = '1'">
<second>present</second>
</xsl:if>
<xsl:if test="Root/c/text() = '1'">
<third>present</third>
</xsl:if>
<xsl:if test="Root/d/text() = '1'">
<fourth>present</fourth>
</xsl:if>
</Root>
</xsl:template>
</xsl:stylesheet>
我的输入xml
<Root>
<a>1</a>
<b>1</b>
<c>0</c>
<d>1</d>
</Root>
我的输出
<Root>
<first>present</first>
<second>present</second>
<fourth>present</fourth>
</Root>