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?

More than 5 years have passed since last update.

ストロングパラメーターの単語をひとつづつ日本語翻訳

Posted at

params.require(:モデル名).permit(:キー名, :キー名)
※モデル名は小文字の単数形
※キー名はカラム名がほとんど

params パラメーター(数値や文字を意味する)の複数形
require 命じる
permit 許可

つまり・・・

「このモデル名の許可したキーだけちょうだい!」

という事。

 def create
    Tweet.create(tweet_params)
  end

  private
  def tweet_params
    params.require(:tweet).permit(:name, :image, :text)
  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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?