我只是想在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>
答案 0 :(得分:2)
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:my="my:my">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<my:ord>
<first>first</first>
<second>second</second>
<third>third</third>
<fourth>fourth</fourth>
</my:ord>
<xsl:variable name="vOrds" select="document('')/*/my:ord/*"/>
<xsl:template match="Root/*[. = 1]">
<xsl:variable name="vPos" select="position()"/>
<xsl:element name="{$vOrds[position()=$vPos]}">present</xsl:element>
</xsl:template>
<xsl:template match="text()"/>
</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>
答案 1 :(得分:1)
执行此操作的一种方法是在output-template.xml中为输出创建模板:
<Root>
<first>present</first>
<second>present</second>
<third>present</third>
<fourth>present</fourth>
</Root>
然后处理:
<xsl:variable name="input" select="/"/>
<xsl:template match="Root/*">
<xsl:variable name="p" select="position()"/>
<xsl:if test="$input/Root/*[$p] = '1'">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:template>
<xsl:template match="/">
<Root>
<xsl:apply-templates select="document('output-template.xml')/Root/*"/>
</Root>
</xsl:template>