以下行将创建一个链接到things/:id
link_to "Thing", @thing
但我需要创建一个指向things/:some_other_id
.
我的第一个想法是改变/things/:id
to的路线/things/:some_other_id
应该有效,但它没有。
我需要在不明确指出some_other_id
and的情况下执行以下操作another_path
:
link_to "Thing", another_path(@thing.some_other_id)