我已经使用XSLT管理从XML到CSV的转换。我只附加了XSLT的一部分,以简化它。 我只想添加将取代“ConsentCode”值的功能如下:YES-> 1,NO-> 0,NOTSET-> “”(空字符串)。 我假设这可以使用“xsl:choose”函数完成,但我没有设法使其适应我的XSLT 你能建议吗? 谢谢
这是我的XML
<SiebelMessage>
<ListOfSwiOrganizationIO>
<Account>
<Id>F-8LU</Id>
<PartyUId>A0A047</PartyUId>
<Email>de2@sk.ds.com</Email>
<Name>DBEXT2</Name>
<ListOfIntegrityCode>
<IntegrityCode>
<IntegrityType>AllowSms</IntegrityType>
<ConsentCode>YES</ConsentCode>
</IntegrityCode>
<IntegrityCode>
<IntegrityType>AllowEmail</IntegrityType>
<ConsentCode>NO</ConsentCode>
</IntegrityCode>
</ListOfIntegrityCode>
</Account>
</ListOfSwiOrganizationIO>
</SiebelMessage>
这是我的XSLT:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:csv="csv:csv">
<xsl:output method="text" encoding="utf-8"/>
<xsl:strip-space elements="*"/>
<xsl:variable name="delimiter" select="';'"/>
<xsl:template match="/">
<!-- Integrity Codes -->
<xsl:value-of select="concat(ListOfIntegrityCode/IntegrityCode[IntegrityType='AllowSms']/ConsentCode, $delimiter, ListOfIntegrityCode/IntegrityCode[IntegrityType='AllowEmail']/ConsentCode, $delimiter)"/>
<!-- end values -->
<xsl:if test="position()!=last()">
<xsl:text> </xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
CSV中的必需输出: 1,0
答案 0 :(得分:0)
好吧,如果你想用 xsl :: choose 来做这件事,你可能最好将逻辑放在命名模板中,然后再多次调用:
<xsl:template name="ConsentCode">
<xsl:param name="code" />
<xsl:choose>
<xsl:when test="$code = 'YES'">1</xsl:when>
<xsl:when test="$code = 'NO'">0</xsl:when>
</xsl:choose>
</xsl:template>
然后,你会像这样输出你的行
<xsl:call-template name="ConsentCode">
<xsl:with-param name="code" select="ListOfIntegrityCode/IntegrityCode[IntegrityType='AllowSms']/ConsentCode" />
</xsl:call-template>
<xsl:value-of select="$delimiter" />
<xsl:call-template name="ConsentCode">
<xsl:with-param name="code" select="ListOfIntegrityCode/IntegrityCode[IntegrityType='AllowEmail']/ConsentCode" />
</xsl:call-template>
另一方面,如果您使用的是XSLT 2.0,则可以删除 xsl:choose 并使用此表达式
<xsl:value-of select="if ($code = 'YES') then '1' else (if ($code = 'NO') then '0' else '')" />
如果你模糊编码是你的事,你可以这样编码,这可以在XSLT 1.0和XSLT 2.0中使用
<xsl:value-of select="translate($code, 'YNESO', '10')" />