英文 Grails 日期格式
我有以下代码来格式化日期:
def currentDate = new Date().format('E, dd MMM yyyy')
格式符合我的预期,但它是用我的计算机语言编写的。 我怎样才能用英文给出日期? 有什么帮助吗?谢谢!
I have the following code to format the date:
def currentDate = new Date().format('E, dd MMM yyyy')
The format is as I expected, however it is written in the language of my computer.
How can I get it to give the date in English?
Any help? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在控制器的上下文中运行,我建议您使用
If you're running in context of a Controller I would suggest you use
您可以使用标准日期格式化程序:
You can use standard date formatter:
如果您在控制器、taglib 或 GSP 中执行此操作,请尝试使用 formatDate< /a> 标签代替。
在 GSP 中,您还可以使用以下标记语法调用它:
If you're doing this in a controller, taglib or GSP, try using the formatDate tag instead.
In a GSP you can also invoke it using this tag syntax: