0

非フィールドを使用できる一時的なものがありますが、データベースに保存せずにオブジェクトを維持しています:

例えば:

class User
   dont-store :birthday
end
4

1 に答える 1

2

普通の古いものを使用してattr_accessorください。

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