0
私はレールのルートを設定していますが、rake routes
を実行すると表示されますが、私はperfixをrestore_linkにしたいのですが、どうしたらいいですか?リソースからリソースへのルートのプレフィックスを設定するにはどうすればよいですか?
すくいルート
restore_links POST /:uid/links/:id(.:format) links#restore
ルートの設定
resources :accounts, path: '/', param: :uid, only: [:show] do
member do
resources :links do
collection do
post ':id', to: "links#restore", as: "restore"
end
end
end
end
あなたが働いて、このいずれかを取得しましたか? –
いいえ、私は最終的に 'post:uid/links /:id 'を使用して、" links#restore "のようにリソースブロックの外に" restore_link "を入れます。 – Tsao
私はperfixをカスタマイズしたいのですが、 – Tsao