<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<s:Header xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" />
<soapenv:Body>
<swiftResponseResponse xmlns="http://webservice.sbi.com">
<swiftResponseReturn>15617TS006140|DC768736|13321.49|04-05-2017 15:13:03|SWIFTINR|NA|FAIL-ACCOUNT UNAVAILABLE</swiftResponseReturn>
</swiftResponseResponse>
</soapenv:Body>
</soapenv:Envelope>
'
我的 XSLT 代码是">
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://webservice.sbi.com" exclude-result-prefixes="soapenv xsl xsd xsi xs ">
<!--<xsl:output method="xml" indent="yes"/>-->
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<!--<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>-->
<xsl:template name="tokenize">
<xsl:param name="text"/>
<xsl:param name="separator" />
<xsl:choose>
<xsl:when test="not(contains($text, $separator))">
<swiftResponseReturnValue>
<xsl:value-of select="$text"/>
</swiftResponseReturnValue>
</xsl:when>
<xsl:otherwise>
<swiftResponseReturnValue>
<xsl:value-of select="normalize-space(substring-before($text, $separator))"/>
</swiftResponseReturnValue>
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="substring-after($text, $separator)"/>
<xsl:with-param name="separator" select="$separator"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--<xsl:template match="soapenv:Envelope/soapenv:Body/xs:swiftResponseResponse/xs:swiftResponseReturn">-->
<xsl:template match="soapenv:Envelope/soapenv:Body/xs:swiftResponseResponse/xs:swiftResponseReturn">
<!--<xsl:element name="Root">-->
<!--<xsl:element name="swiftResponseReturn">
<xsl:value-of select="xs:swiftResponseResponse/xs:swiftResponseReturn"/>
</xsl:element>-->
<xsl:copy>
<xsl:variable name="tokenize">
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="separator" select="'|'"/>
</xsl:call-template>
</xsl:variable>
<xsl:copy-of select="$tokenize"/>
</xsl:copy>
<!--</xsl:element>-->
</xsl:template>
</xsl:stylesheet>
'
我的操作是"
<swiftResponseReturn xmlns="http://webservice.sbi.com"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<swiftResponseReturnValue xmlns="">15617TS006140</swiftResponseReturnValue>
<swiftResponseReturnValue xmlns="">DC768736</swiftResponseReturnValue>
<swiftResponseReturnValue xmlns="">13321.49</swiftResponseReturnValue>
<swiftResponseReturnValue xmlns="">04-05-2017 15:13:03</swiftResponseReturnValue>
<swiftResponseReturnValue xmlns="">SWIFTINR</swiftResponseReturnValue>
<swiftResponseReturnValue xmlns="">NA</swiftResponseReturnValue>
<swiftResponseReturnValue xmlns="">FAIL-ACCOUNT UNAVAILABLE</swiftResponseReturnValue>
</swiftResponseReturn>
'
预期输出为 `
<swiftResponseReturn>
<swiftResponseReturnValue1>15617TS006140</swiftResponseReturnValue1>
<swiftResponseReturnValue2>DC768736</swiftResponseReturnValue2>
<swiftResponseReturnValue3>13321.49</swiftResponseReturnValue3>
<swiftResponseReturnValue4>04-05-2017 15:13:03</swiftResponseReturnValue4>
<swiftResponseReturnValue5>SWIFTINR</swiftResponseReturnValue5>
<swiftResponseReturnValue6>NA</swiftResponseReturnValue6>
<swiftResponseReturnValue7>FAIL-ACCOUNT UNAVAILABLE</swiftResponseReturnValue7>
</swiftResponseReturn>
' 我使用模板来破坏代码管道分隔符格式,但我不想要命名空间,还想要唯一标识符来区分每个输出。
您正在使用xsl:copy
来复制swiftResponseReturn
元素,但这将包括命名空间。您只需要创建一个没有命名空间的新元素名称xswiftResponseReturn
。
尝试用这个替换您当前的模板。
<xsl:template match="xs:swiftResponseReturn">
<swiftResponseReturn>
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="separator" select="'|'"/>
</xsl:call-template>
</swiftResponseReturn>
</xsl:template>
请注意,您实际上并不需要模板中元素的完整路径在此处匹配。
更通用的解决方案:将<xsl:copy>
更改为<xsl:element name="{name()}">
。
当然,请记住相应地更改结束标签。
编辑
这里有用于更改要求的 XSLT 脚本:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xs="http://webservice.sbi.com" exclude-result-prefixes="#all">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template name="tokenize">
<xsl:param name="text"/>
<xsl:param name="separator" />
<xsl:choose>
<xsl:when test="not(contains($text, $separator))">
<token>
<xsl:value-of select="$text"/>
</token>
</xsl:when>
<xsl:otherwise>
<token>
<xsl:value-of select="normalize-space(substring-before($text, $separator))"/>
</token>
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="substring-after($text, $separator)"/>
<xsl:with-param name="separator" select="$separator"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="soapenv:Envelope/soapenv:Body/xs:swiftResponseResponse/xs:swiftResponseReturn">
<xsl:element name="{name()}">
<xsl:variable name="tokens">
<xsl:call-template name="tokenize">
<xsl:with-param name="text" select="."/>
<xsl:with-param name="separator" select="'|'"/>
</xsl:call-template>
</xsl:variable>
<xsl:for-each select="$tokens/token">
<xsl:element name="swiftResponseReturnValue{position()}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:for-each>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
与解决方案相比发生了哪些变化:
tokenize
模板返回一系列token
元素 其结果保存在变量tokens
。- 来自此变量的令牌在
for-each
循环中进行处理。 - 在这个循环中,创建了一个 alement。它的名字是由 从
swiftResponseReturnValue
(常量文本(和当前标记的位置编号。 - 此源标记的内容打印为 刚刚创建的标签。
脚本开头还有两个额外的更改:
exclude-result-prefixes
属性的值已更改为#all
(更简单、更通用的解决方案(。- 我还添加了
<xsl:strip-space elements="*"/>
以删除多余的 输出中的空格和换行符。