视图中的布尔值

时间:2014-07-22 15:16:39

标签: html ruby-on-rails view internationalization boolean

我很难在视图中显示布尔值的结果
我想显示启用和禁用但显示true或false

我在index.html.slim中的代码

      th Active?  
          td = plan.enable

我的代码在show.html.slim

   p
    strong Active ?:
    = @plan.enable

我如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

你应该研究一下三元。 How do I use the conditional operator (? :) in Ruby?

plan.enable? ? 'Enabled' : 'Disabled'

您可以在视图中执行类似的操作。