0

是否有某种瞬态我可以使用非字段,并且仍然在对象中维护而不存储在数据库中:

例如:

class User
   dont-store :birthday
end
4

1 回答 1

2

只需使用普通的 old attr_accessor

class Customer
  field :name # this is stored
  attr_accessor :credit_card # does not get stored
end
于 2012-10-12T20:36:24.440 回答