最后,我们为我们的邮件生成了一个有用的链接。 为电子邮件生成一个带有 rails 的真实 url 这工作得很好,非常好。但是我们想调用鞋子动作:-)
<%=link_to('Link', :controller => 'mycontroller', :action => 'show', :id => @mycontroller.id )%>
网址看起来如此
http://localhost:3000/mycontroller/show/10
我们需要这个结构
http://localhost:3000/mycontroller/10
rake routes
命令这样说
mycontroller GET /mycontroller/:id(.:format) mycontroller#show
我们如何获得所需的结构?我们是否需要编辑我们的路线,还是有其他方法可以获得正确的 url?