使用 Rails 替换视图中 true 和 false 的输出
我有一个用布尔值评估数据库表的视图。那些字段包含着谁想到的,无论是真是假。
我想用“是”和“否”或“Ja und Nein”之类的内容替换此文本。没关系。 Rails 有没有办法做到这一点?
I’ve got a view which evaluates a database table with boolean values. Those fields contain, who thought of it, wether true or false.
I’d like to replace this text with something like Yes and No. Or Ja und Nein. Doesn’t matter. Is there any Rails way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
放置它的好地方可能是在模型中,所以
然后在视图中:
A nice place to put this might be in the model, so
And then in the view:
我制作了一个保留原始功能的版本,同时允许以类似于
DateTime.to_s(:style)
的方式进行自定义。https://gist.github.com/pehrlich/4963672
我把它放在 lib 中,然后包含application.rb 中的这一行:
I made a version which preserves original functionality, while allowing customization in similar fashion to how
DateTime.to_s(:style)
.https://gist.github.com/pehrlich/4963672
I put this in lib and then include with this line in application.rb: