使用 Rails 替换视图中 true 和 false 的输出

发布于 2024-10-16 11:25:45 字数 110 浏览 1 评论 0原文

我有一个用布尔值评估数据库表的视图。那些字段包含着谁想到的,无论是真是假。

我想用“是”和“否”或“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2024-10-23 11:25:45
<%= @attribute ? 'Yes' : 'No' %>

放置它的好地方可能是在模型中,所以

class Whatever < ActiveRecord::Base
  def something_yn
    attribute ? 'Yes' : 'No'
  end
end

然后在视图中:

<%= @instance.something_yn %>
<%= @attribute ? 'Yes' : 'No' %>

A nice place to put this might be in the model, so

class Whatever < ActiveRecord::Base
  def something_yn
    attribute ? 'Yes' : 'No'
  end
end

And then in the view:

<%= @instance.something_yn %>
山色无中 2024-10-23 11:25:45

我制作了一个保留原始功能的版本,同时允许以类似于 DateTime.to_s(:style) 的方式进行自定义。

https://gist.github.com/pehrlich/4963672

class TrueClass
  def to_s(style = :boolean)
    case style
      when :word then 'yes'
      when :Word then 'Yes'
      when :number then '1'
      else 'true'
    end
  end
end

class FalseClass
  def to_s(style = :boolean)
    case style
      when :word then 'no'
      when :Word then 'No'
      when :number then '0'
      else 'false'
    end
  end
end

我把它放在 lib 中,然后包含application.rb 中的这一行:

require "./lib/boolean.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

class TrueClass
  def to_s(style = :boolean)
    case style
      when :word then 'yes'
      when :Word then 'Yes'
      when :number then '1'
      else 'true'
    end
  end
end

class FalseClass
  def to_s(style = :boolean)
    case style
      when :word then 'no'
      when :Word then 'No'
      when :number then '0'
      else 'false'
    end
  end
end

I put this in lib and then include with this line in application.rb:

require "./lib/boolean.rb"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文