我试图在for-each循环中获得cond1-3,因为输出标签是相同的
<?xml version="1.0"?>
<root>
<stuff>
<morestuff/>
</stuff>
<conds>
<cond1>yes</cond1>
<cond2>yes</cond2>
<cond3>yes</cond3>
<cond4>yes</cond4>
<cond5>yes</cond5>
<cond6>yes</cond6>
<cond7>yes</cond7>
</conds>
<stuff>
<morestuff/>
</stuff>
所以输出必须像这样
<?xml version="1.0"?>
<soapheader/>
<soapbody>
<somebiprostuff>
<m:Element xsi:type="komp:CT_c">
<v:Leistung>
<v:ArtID xsi:type="dt:STE_d" />
<v:Wert />
<v:Werteinheit />
</v:Leistung>
<komp:ArtID xsi:type="dt:STE_something">666</komp:ArtID>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">F</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">S</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">L</komp:Gefahr>
</komp:Gefahr>
</m:Element>
<m:Element xsi:type="komp:CT_c">
<v:Leistung>
<v:ArtID xsi:type="dt:STE_d" />
<v:Wert />
<v:Werteinheit />
</v:Leistung>
<komp:ArtID xsi:type="dt:STE_something">777</komp:ArtID>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">F</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_Gsomething">S</komp:Gefahr>
</komp:Gefahr>
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_something">L</komp:Gefahr>
</komp:Gefahr>
</m:Element>
</somebiprostuff>
</soapbody>
因此,当输入XML包含666和777的乘积并且cond1-3为yes时,这应该是正确的输出。
我试着用这种方法处理它,但效果不太好
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<soapheader/>
<soapbody>
<somebiprostuff>
<xsl:call-template name="element"/>
</somebiprostuff>
</soapbody>
</xsl:template>
<xsl:temaplate name="element">
<m:Element xsi:type="komp:CT_c">
<v:Leistung>
<v:ArtID xsi:type="dt:STE_d" />
<v:Wert />
<v:Werteinheit />
</v:Leistung>
<komp:ArtID xsi:type="dt:STE_something">777</komp:ArtID>
<xsl:for-each select="//cond1 = 'yes' or //cond2 = 'yes' or //cond3 = 'yes'">
<komp:Gefahr>
<komp:Gefahr xsi:type="dt:STE_xy">
<xsl:choose>
<!-- cond1 -->
<xsl:when test="//cond1 = 'yes'">
<xsl:value-of select="'F'"/>
</xsl:when>
<!-- cond2 -->
<xsl:when test="//cond2 = 'yes'">
<xsl:value-of select="'S'"/>
</xsl:when>
<!-- cond3 -->
<xsl:when test="//cond3 = 'yes'">
<xsl:value-of select="'L'"/>
</xsl:when>
</xsl:choose>
</komp:Gefahr>
</komp:Gefahr>
</xsl:for-each>
<xsl:/template>
将导致空输出。如果有可能出现3次,2次或1次重复,我怎么才能让这个循环正确呢
所需转换的规则并不完全清楚。这样的东西适合你吗?
<xsl:template match="conds">
<result>
<xsl:apply-templates select="cond1 | cond2 | cond3"/>
</result>
</xsl:template>
<xsl:template match="cond1 | cond2 | cond3">
<xsl:if test=".='yes'">
<t:x>
<t:x xsi:type="dt:STE_xy">
<xsl:choose>
<xsl:when test="self::cond1">F</xsl:when>
<xsl:when test="self::cond2">S</xsl:when>
<xsl:when test="self::cond3">L</xsl:when>
</xsl:choose>
</t:x>
</t:x>
</xsl:if>
</xsl:template>