我正在使用XSLT 1.0将XML(输入)转换为另一个XML(输出)。我遇到了无法转换XSLT中特定节点的元素之一的问题。
<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<cd>
<payload>
<order>
<Id>12345</Id>
<dateDelivery>2018-03-29T14:00:00 EST</dateDelivery>
<play>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</play>
<play>
<title>Esque</title>
<artist>Bylan</artist>
<country>CA</country>
<company>bia</company>
<price>16.90</price>
<year>2018</year>
</play>
</order>
</payload>
</cd>
</catalog>
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" >
<SOAP-ENV:Body>
<SongUpdate_Request>
<xsl:apply-templates select="//cd"/>
</SongUpdate_Request>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</xsl:template>
<xsl:template match="//cd">
<xsl:call-template name="getHeader"/>
<xsl:call-template name="getPayload"/>
</xsl:template>
<xsl:template name="getHeader">
<header>
<header>
<Id_T>
<xsl:value-of select="//payload/order/Id"/>
</Id_T>
</header>
</header>
</xsl:template>
<xsl:template name="getPayload">
<songEvent>
<xsl:call-template name="getOrder"/>
</songEvent>
</xsl:template>
<xsl:template name="replace">
<xsl:param name="dd"/>
<xsl:param name="searchString"> EST</xsl:param>
<xsl:param name="replaceString">.000Z</xsl:param>
<xsl:choose>
<xsl:when test="contains($dd,$searchString)">
<xsl:value-of select="substring-before($dd,$searchString)"/>
<xsl:value-of select="$replaceString"/>
<!-- recursive call -->
<xsl:call-template name="replace">
<xsl:with-param name="dd" select="substring-after($dd,$searchString)"/>
<xsl:with-param name="searchString" select="$searchString"/>
<xsl:with-param name="replaceString" select="$replaceString"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$dd"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="getOrder">
<xsl:call-template name="replace">
<xsl:with-param name="dd" select="//*:payload/*:order/*:dateDelivery"/>
</xsl:call-template>
<xsl:variable name="OrderPresent">
<xsl:value-of select=".//*:order"/>
</xsl:variable>
<xsl:choose>
<xsl:when test="$OrderPresent!=''">
<xsl:copy-of select=".//*:order"/>
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SongUpdate_Request>
<header>
<header>
<Id_T>12345</Id_T>
</header>
</header>
<songEvent>2018-03-29T14:00:00.000Z
<order>
<Id>12345</Id>
<dateDelivery>2018-03-29T14:00:00 EST</dateDelivery>
<play>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</play>
<play>
<title>Esque</title>
<artist>Bylan</artist>
<country>CA</country>
<company>bia</company>
<price>16.90</price>
<year>2018</year>
</play>
</order>
</songEvent>
</SongUpdate_Request>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
因此,如果您是观察员,我正在尝试将日期格式从 EST 更改为“ Z”。但是我不确定在XSLT中进行转换时如何应用。意思是我想看到输出xml:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SongUpdate_Request>
<header>
<header>
<Id_T>12345</Id_T>
</header>
</header>
<songEvent>
<order>
<Id>12345</Id>
*<dateDelivery>2018-03-29T14:00:00.000Z</dateDelivery>*
<play>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</play>
<play>
<title>Esque</title>
<artist>Bylan</artist>
<country>CA</country>
<company>bia</company>
<price>16.90</price>
<year>2018</year>
</play>
</order>
</songEvent>
</SongUpdate_Request>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
任何建议或帮助,我们将不胜感激。 谢谢!
答案 0 :(得分:1)
如果要修改元素,则不能复制它。您需要有一个与之匹配的模板,您可以在其中指定要输出的内容而不是原始内容。在您的示例中,这可能很简单:
<xsl:template match="dateDelivery">
<xsl:copy>
<xsl:value-of select="substring(., 1, 19)"/>
<xsl:text>.000Z</xsl:text>
</xsl:copy>
</xsl:template>
这是一个完整的样式表,可生成您的问题中显示的XML:
XSLT 1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/catalog">
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" >
<SOAP-ENV:Body>
<SongUpdate_Request>
<xsl:apply-templates select="cd/payload"/>
</SongUpdate_Request>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</xsl:template>
<xsl:template match="payload">
<header>
<header>
<Id_T>
<xsl:value-of select="order/Id"/>
</Id_T>
</header>
</header>
<songEvent>
<xsl:apply-templates/>
</songEvent>
</xsl:template>
<xsl:template match="dateDelivery">
<xsl:copy>
<xsl:value-of select="substring(., 1, 19)"/>
<xsl:text>.000Z</xsl:text>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
注意:
如您对问题的评论中所述,此修改了{strong> dateDelivery
元素的实际值,使其比原始时间早5小时。