0

我正在尝试显示 MSSQL 中的日期时间列。但是,当我显示数据库中的日期时,它显示为这样。

在此处输入图像描述

时间后面有一个 .0。无论如何要删除.0?顺便说一句,我正在使用grails。这是我的代码,希望你们能在这里帮忙。:)

        def result = sql.rows("select * from user")
        def example = sql.rows(query)
        [result:result]
4

1 回答 1

2

在您的 gsp 中显示您的日期时,您可以将其格式化为:

<g:formatDate format="yyyy-MM-dd HH:mm:ss" date="${result?.date}"/>

您可以在此处找到 formatDate 文档

于 2013-02-13T06:28:26.290 回答