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?

Ruby on Railsのヘルパーメソッドについて

Last updated at Posted at 2024-12-01

Ruby on railsはルーティングを補助するヘルパーメソッドがあります。

1.デフォルトで設定されているもの

デフォルトは4つあります。(index,show,new,edit)
create,updateは必要なため書いておきます。
hogeはコントローラー名です。
1.index

hoges_path(引き継ぐもの)

2.show

hoge_path(id: :example,引き継ぐもの)

3.new

new_hoge_path(引き継ぐもの)

4.create

hoges_path(@array,引き継ぐもの)

5.edit

edit_hoge_path(引き継ぐもの)

6.update

hoges_path(@array,引き継ぐもの)

2.追加でルーティングしたい場合

resources :hoge do
    collection do
      get 'example', to: 'hoge#example'
    end
  end
exampleはアクション名

基本的にこの2つを使ってルーティングを行う。

0
0
1

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?