Rails 助手,显示单词而不是日期
这个问题的后续问题:
http://stackoverflow.com/questions/3032598/rails-created-at-on-display-if-today
使用以下助手时是否可以输出单词“TODAY”而不是日期?
def created_today k
k.created_at if k.created_at.to_date == Date.today
end
<%=h created_today(k) %>
谢谢,
丹尼
A follow on from this questions:
http://stackoverflow.com/questions/3032598/rails-created-at-on-display-if-today
Is it possible to output the word TODAY rather than the date when using the following helper?
def created_today k
k.created_at if k.created_at.to_date == Date.today
end
<%=h created_today(k) %>
Thanks,
Danny
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你想显示不是今天的日期:
在你的CSS中,你描述你想要如何“突出显示”它
If you want to display the date if it's not today:
In your css, you describe how you want to 'highlight' it