挂毯。输出日期

发布于 2024-10-30 13:49:17 字数 145 浏览 0 评论 0原文

怎么办?

<t:output format="literal:dd.MM.yyyy" value="myItem.activity.do_create_date"/>

我想知道如何格式化日期输出?

how to do?

<t:output format="literal:dd.MM.yyyy" value="myItem.activity.do_create_date"/>

I want to know how to format output of date?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

¢好甜 2024-11-06 13:49:17

您所拥有的有效(在 Tapestry 5.2.4 中)。您遇到了什么问题,或者您具体想做什么?如果您想从 Java 类获取格式,这里有示例片段。

.java 文件:

private String format;
private Date date;

public void setupRender() {
    // just an example
    format = "dd.MM.yyyy";
    date = new Date();
}

public String getFormat() {
    return format;
}

public Date getDate() {
    return date;
}

.tml 文件:

<t:output format="format" value="date" />

What you have works (in Tapestry 5.2.4). What problem are you having or what more specifically are you trying to do? If you want to get the format from your Java class, here's are example snippets.

.java file:

private String format;
private Date date;

public void setupRender() {
    // just an example
    format = "dd.MM.yyyy";
    date = new Date();
}

public String getFormat() {
    return format;
}

public Date getDate() {
    return date;
}

.tml file:

<t:output format="format" value="date" />
像你 2024-11-06 13:49:17

我发现大多数应用程序都有特定的、统一的日期格式设置方法;我通常创建一个 OutputDate 组件来封装格式和其他问题。

I've found that most apps have specific, uniform ways to format dates; I usually create a OutputDate component that encapsulates formatting and other concerns.

感情旳空白 2024-11-06 13:49:17

页面模板:

<t:output format="format" value="myItem.activity.do_create_date"/>

页面类别:

private final String format = "dd.MM.yyyy";

public Format getFormat()
{
    return new SimpleDateFormat(format);
}

page template:

<t:output format="format" value="myItem.activity.do_create_date"/>

page class:

private final String format = "dd.MM.yyyy";

public Format getFormat()
{
    return new SimpleDateFormat(format);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文