我正在尝试在XML中读取消息并输出为JSON。每条消息还具有显示和隐藏消息的时序逻辑。
下面是我的XML,每个消息都有开始和结束日期/时间
<activeMessage>
<message>
<messageText>test message 1</messageText>
<displayScheduleContainer>
<startDate>17/05/2019</startDate>
<startTimeHrs>12</startTimeHrs>
<startTimeMins>00</startTimeMins>
<noEndDate/>
<endDate>17/05/2019</endDate>
<endTimeHrs>23</endTimeHrs>
<endTimeMins>59</endTimeMins>
</displayScheduleContainer>
</message>
下面是我的XSL
<xsl:for-each select="xalan:nodeset($messageData)/activeMessage/message">
<xsl:variable name="messageInDateTime">
<xsl:call-template name="dateLessThanTemplate">
<xsl:with-param name="startDateTime" select="concat(displayScheduleContainer/startDate, ' ', displayScheduleContainer/startTimeHrs, ':', displayScheduleContainer/startTimeMins)" />
<xsl:with-param name="endDateTime" select="concat(displayScheduleContainer/endDate, ' ', displayScheduleContainer/endTimeHrs, ':', displayScheduleContainer/endTimeMins)" />
</xsl:call-template>
</xsl:variable>
<xsl:if test="$messageInDateTime = 'true'">
<xsl:choose>
<xsl:when test="position()=1">
<xsl:call-template name="singleMessageJSON" />
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="multiMessageJSON" />
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:for-each>
您添加了XSLT 3的标签,我认为您可以摆脱任何Java调用,而只需使用例如。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mf="http://example.com/mf"
exclude-result-prefixes="#all"
version="3.0">
<xsl:function name="mf:get-dateTime" as="xs:dateTime?">
<xsl:param name="date" as="xs:string"/>
<xsl:param name="hours" as="xs:string"/>
<xsl:param name="minutes" as="xs:string"/>
<xsl:try
select="xs:dateTime(replace($date, '([0-9]{2})/([0-9]{2})/([0-9]{4})', '$3-$2-$1') || 'T' || $hours || ':' || $minutes || ':00')">
<xsl:catch select="()"/>
</xsl:try>
</xsl:function>
<xsl:param name="now" select="current-dateTime()"/>
<xsl:output method="json" indent="yes"/>
<xsl:template match="activeMessage">
<xsl:sequence
select="map {
'message' : array {
message[mf:get-dateTime(displayScheduleContainer/startDate, displayScheduleContainer/startTimeHrs, displayScheduleContainer/startTimeMins) lt $now
and
mf:get-dateTime(displayScheduleContainer/endDate, displayScheduleContainer/endTimeHrs, displayScheduleContainer/endTimeMins) gt $now]/messageText[normalize-space()]/string()
}
}"/>
</xsl:template>
</xsl:stylesheet>
在XSLT 3中,撒克逊人9.8或更高版本。我不确定所需的确切JSON输出格式,但是XSLT 3的主要优点是您可以在XSLT/XPATH中构造映射和数组,并且如果需要,它们就可以序列化为JSON,而不必担心在正确的位置输出逗号。
https://xsltfiddle.liberty-development.net/bnnzwx/1
将日期的两个比较移动到另一个函数中可能会更好,因为谓词变得更加可读:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mf="http://example.com/mf"
exclude-result-prefixes="#all"
version="3.0">
<xsl:function name="mf:get-dateTime" as="xs:dateTime?">
<xsl:param name="date" as="xs:string"/>
<xsl:param name="hours" as="xs:string"/>
<xsl:param name="minutes" as="xs:string"/>
<xsl:try
select="xs:dateTime(replace($date, '([0-9]{2})/([0-9]{2})/([0-9]{4})', '$3-$2-$1') || 'T' || $hours || ':' || $minutes || ':00')">
<xsl:catch select="()"/>
</xsl:try>
</xsl:function>
<xsl:function name="mf:compare-dates" as="xs:boolean">
<xsl:param name="schedule" as="element(displayScheduleContainer)"/>
<xsl:sequence
select="mf:get-dateTime($schedule/startDate, $schedule/startTimeHrs, $schedule/startTimeMins) lt $now
and
mf:get-dateTime($schedule/endDate, $schedule/endTimeHrs, $schedule/endTimeMins) gt $now"/>
</xsl:function>
<xsl:param name="now" select="current-dateTime()"/>
<xsl:output method="json" indent="yes"/>
<xsl:template match="activeMessage">
<xsl:sequence
select="map {
'message' : array {
message[mf:compare-dates(displayScheduleContainer)]/messageText[normalize-space()]/string()
}
}"/>
</xsl:template>
</xsl:stylesheet>
https://xsltfiddle.liberty-development.net/bnnzwx/2