Railsドキュメント

URLでの使用に適したオブジェクトのキーを表す文字列

適応バージョン

説明

URLでの使用に適したオブジェクトのキーを表す文字列

使い方

to_param()

class Person
    include ActiveModel::Conversion
    attr_accessor :id
    def initialize(id)
        @id = id
    end
    def persisted?
        true
    end
end
person = Person.new(1)
person.to_param
#=> "1"

ソースコード