标签: date meteor telescope
我正在使用望远镜应用程序。目前在我的帖子标题模板中,我使用scheduledAt来显示事件的日期。我想将日期缩短到 2015年5月7日星期四,但我真的不知道如何去做这件事。
答案 0 :(得分:4)
在Telescope中,有一个专门为此目的而设计的formatDate助手,只需在你的模板中调用它:
formatDate
{{formatDate scheduledAt "ddd MMMM DD YYYY"}}
在幕后,它使用momentjs来显示日期对象。
momentjs
http://momentjs.com/docs/#/displaying/