我有一个要求,其中需要使用XSL从yyyy-mm-dd
更改日期格式为dd-mmm-yyyy
。
我设法获得了日期的价值,并编写了更改逻辑的逻辑。但是某种程度上的价值没有变化。
请求和XSL也可以在此处找到:更改日期格式
XML输入
<params>
<param name ="query" >
<queryData>
<parameter index ="0" value ="2017-12-06" dataType="java.lang.String"/>
<parameter index ="1" value ="2017-12-03" dataType="java.lang.String"/>
</queryData>
</param>
</params>
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="*" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="params/param/queryData/parameter[@value='*'][normalize-space()]">
<xsl:copy>
<xsl:call-template name="reformat-date">
<xsl:with-param name="date" select="." />
</xsl:call-template>
</xsl:copy>
</xsl:template>
<xsl:template name="reformat-date">
<xsl:param name="date" />
<xsl:variable name="dd" select="substring-after(substring-after($date, '-'), '-')" />
<xsl:variable name="mmm" select="substring-before(substring-after($date, '-'), '-')" />
<xsl:variable name="yyyy" select="substring-before($date, '-')" />
<xsl:value-of select="$dd" />
<xsl:text>-</xsl:text>
<xsl:choose>
<xsl:when test="$mmm = '01'">JAN</xsl:when>
<xsl:when test="$mmm = '02'">FEB</xsl:when>
<xsl:when test="$mmm = '03'">MAR</xsl:when>
<xsl:when test="$mmm = '04'">APR</xsl:when>
<xsl:when test="$mmm = '05'">MAY</xsl:when>
<xsl:when test="$mmm = '06'">JUN</xsl:when>
<xsl:when test="$mmm = '07'">JUL</xsl:when>
<xsl:when test="$mmm = '08'">AUG</xsl:when>
<xsl:when test="$mmm = '09'">SEP</xsl:when>
<xsl:when test="$mmm = '10'">OCT</xsl:when>
<xsl:when test="$mmm = '11'">NOV</xsl:when>
<xsl:when test="$mmm = '12'">DEC</xsl:when>
</xsl:choose>
<xsl:text>-</xsl:text>
<xsl:value-of select="$yyyy" />
</xsl:template>
</xsl:stylesheet>
如果要更改属性,则需要调整匹配模式以匹配属性,当然您需要创建一个属性,因此您需要
<xsl:template match="params/param/queryData/parameter/@value">
<xsl:attribute name="{name()}">
<xsl:call-template name="reformat-date">
<xsl:with-param name="date" select="." />
</xsl:call-template>
</xsl:attribute>
</xsl:template>
而不是
<xsl:template match="params/param/queryData/parameter[@value='*'][normalize-space()]">
<xsl:copy>
<xsl:call-template name="reformat-date">
<xsl:with-param name="date" select="." />
</xsl:call-template>
</xsl:copy>
</xsl:template>
http://xsltransform.net/bejaofn/1