最後に、メールの便利なリンクを生成しました。 電子メール用のレールを使用して実際の URL を生成する これは問題なく動作します。しかし、私たちは靴のアクションを呼びたい:-)
<%=link_to('Link', :controller => 'mycontroller', :action => 'show', :id => @mycontroller.id )%>
URLはそう見えます
http://localhost:3000/mycontroller/show/10
この構造が必要です
http://localhost:3000/mycontroller/10
rake routes
コマンドはこう言った
mycontroller GET /mycontroller/:id(.:format) mycontroller#show
必要な構造をどのように取得しますか? ルートを編集する必要がありますか、それとも正しい URL を取得する別の方法はありますか?