LoginSignup
0
1

More than 3 years have passed since last update.

Rails 7つのアクション

Posted at

Rails 7つアクション

・index → 一覧表示

・show → 詳細表示

・new → 生成

・create → 保存

・edit → 編集

・update → 更新

・destroy → 削除

resourcesメソッド

7つのアクションへのルーティングを自動生成するメソッドです。
resourcesの引数に、:tweetsとシンボルで指定すると、/tweetsのパスに対応するルーティングが生成されます。
例 resources :tweets

onlyオプション

resourcesにオプションとしてonlyを加えると指定したアクションのみのルーティングを自動生成します。
例 resources :tweets, only: :index

0
1
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
1