0
1

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.

【初心者】メソッド一覧

Posted at

###resources メソッド

使用例.rb
Rails.application.routes.draw do
  resources :posts
end

###form_with メソッド
Rails 5.1というバージョンから推奨されている、
フォーム実装のためのヘルパーメソッド。

■特徴
1.form_withで自動でパスを選択してくれて、HTTPメソッドを指定する必要を無くす
2.コントローラーから渡された、ActiveRecordを継承するモデルのインスタンスが利用する事ができる
3.form_withではinputタグを使用しない

###redirect_to メソッド

redirect_to "リダイレクト先のパス"

コントローラー等での処理が終わった後に、アクションに対応するビューファイルを参照せずに、別ページへリダイレクトさせる為のメソッド。

##updateメソッド

記入例.rb
  def update
    post = Post.find(params[:id])
    post.update(post_params)
  end

ActiveRecordのメソッドの一つ。
レコードに含まれている情報を更新する事ができる。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?