我很难在视图中显示布尔值的结果
我想显示启用和禁用但显示true或false
我在index.html.slim中的代码
th Active?
td = plan.enable
我的代码在show.html.slim
p
strong Active ?:
= @plan.enable
我如何解决这个问题?
答案 0 :(得分:1)
你应该研究一下三元。 How do I use the conditional operator (? :) in Ruby?
plan.enable? ? 'Enabled' : 'Disabled'
您可以在视图中执行类似的操作。