RailsのPrefix名がおかしくなった件
環境
Ruby 2.6.4
Rails 5.2.3
経緯
ライブ関係のアプリをつくろうとして、以下のようなルーティングを設定。
routes.rb
Rails.application.routes.draw do
resources :lives
end
そして、ルーティングを確認したら、なぜかlifeになってしまった!
原因
Railsで勝手に単数形のPrefixを割り振ってしまったため。
https://ejje.weblio.jp/content/life
解決方法
ルーティングを以下のようにして解消しました。
routes.rb
Rails.application.routes.draw do
resources :lives, only: :index
resources :lives, as: :live, except: :index
end
live_indexだけ気になりますね。。。
これについてはこちらの記事を一読ください。
Author And Source
この問題について(RailsのPrefix名がおかしくなった件), 我々は、より多くの情報をここで見つけました https://qiita.com/taraontara/items/34849b324e11065471c4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .