我定义了以下模型(使用 Mongoid,非活动记录)
class Address
include Mongoid::Document
field :extra, type: String
field :street, type: String
field :area, type: String
field :city, type: String
field :code, type: Integer
validates :street, :city, presence: true
def to_s
"#{extra},#{street},#{area},#{city},#{code}"
end
end
我正在定义 to_s 方法,所以我可以使用:
<%= address %>
在我看来,它会正确打印出地址。但是,上面代码的问题是,如果任何属性为空白或 nil,我最终会得到以下结果:
1.9.3p327 :015 > a
=> #<Address _id: 50f2da2c8bffa6e877000002, _type: nil, extra: "hello", street: nil, area: nil, city: nil, code: nil>
1.9.3p327 :016 > puts a
hello,,,,,
=> nil
使用一堆除非语句来检查值是空白还是 nil 似乎是错误的方法(我可以让它像那样工作,但看起来很hackish)
有什么更好的方法来做到这一点?