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.
在您的视图中创建链接的rails 方法是使用link_to. 传递一个对象将链接到该对象的id. 如何使用我的对象match_id而不是idwith link_to?
link_to
id
match_id
您可以覆盖to_param模型中的方法以返回match_idto have的值,link_to并且其他 rails 助手在生成 url 时会自动使用该值。
to_param
如果您只是使用link_to(@object)我不相信您可以指定默认对象 ID 以外的其他内容。但是,如果您将实际路径助手用于您想要的路线,您可以指定 idobject_path(@object.match_id)
link_to(@object)
object_path(@object.match_id)