Railsドキュメント

すべての属性名を配列で取得

適応バージョン

説明

すべての属性名を配列で取得

使い方

to_key()

class Person
    include ActiveModel::Conversion
    attr_accessor :id
    def initialize(id)
        @id = id
    end
end
person = Person.new(1)
person.to_key #=> [1]

ソースコード