LoginSignup
0
0

CRUDとは

Posted at

CRUDとは

アプリケーション作成時の4つの機能の頭文字を並べたもので
ほとんどのアプリはこの4つの機能で成り立っている

C Create 作成
R Read  表示
U Update 更新
D Delete 削除

コントローラ記述用コード

controller.rb
  # 一覧表示
  def index    
  end

  # 詳細表示
  def show   
  end

  # 作成
  def new
  end

  # 登録
  def create
  end

  # 編集
  def edit
  end

  # 更新
  def update
  end

  # 削除
  def destroy
  end
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