Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有某种瞬态我可以使用非字段,并且仍然在对象中维护而不存储在数据库中:
例如:
class User dont-store :birthday end
只需使用普通的 old attr_accessor。
attr_accessor
class Customer field :name # this is stored attr_accessor :credit_card # does not get stored end