0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[rails5]routes.rbでprefix・URI・controller#actionの値を任意にカスタマイズできる

Posted at

環境

  • rails 5.2.3

各オプションの作用部分早見表

Prefix URI Pattern Controller#Action
namespace
scope X X
module X X
as X X

 表のPrefix、URI Pattern、Controller#Actionはrake routesでroutingを表示した時の各部分を指しています。

やりたい組み合わせ

Prefix URI Pattern Controller#Action
new_hoge_team huga/team/new hoge/team#new
URI Patternのみにhugaをつけたい。

routes.rb

scope :huga, module: "hoge", as: :hoge do
 resorces :team
end

参考

Railsガイド
https://railsguides.jp/routing.html
Railsのroutingにおけるscope / namespace / module の違い
https://qiita.com/ryosuketter/items/9240d8c2561b5989f049

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?