本文介绍了如何使用 XSLT 将刻度转换为可读的日期时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有这样时间戳的 XML:

I have an XML with timestamps like this:

<node stamp="1236888746689" />

我想在结果 HTML 中将它们显示为带时间的日期.有没有办法用 XSLT(任何版本)来做到这一点?

And I would like to display them in the result HTML as date with time.Is there a way to do it with XSLT (any Version)?

我在 Saxon9 中使用 XSLT2.0.基准日期为 1970-01-01 0:00.

I am using XSLT2.0 with Saxon9. The base date is 1970-01-01 0:00.

推荐答案

你取日期 1970-01-01T00:00:00 并添加尽可能多的毫秒数:

You take the date 1970-01-01T00:00:00 and add as many milliseconds as the value of the stamp tells you:

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.w3.org/TR/xhtml1/strict">

    <xsl:template match="node">
        <xsl:value-of
select='xs:dateTime("1970-01-01T00:00:00") + @stamp * xs:dayTimeDuration("PT0.001S")'/>
    </xsl:template>

</xsl:stylesheet>

这篇关于如何使用 XSLT 将刻度转换为可读的日期时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 08:15