而不是使用一行的id
字段来生成 slug(像这样):
class Person < ActiveRecord::Base
def to_param
[id, name.parameterize].join("-")
end
end
我希望能够使用非 id 字段,如下所示:
class Person < ActiveRecord::Base
def to_param
[application_id, name.parameterize].join("-")
end
end
它仍然是一个整数,但不是基于 进行查找id
,而是应该基于 进行查找application_id
。