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 3 years have passed since last update.

[rails]requireメソッドとpermitメソッドとは

Posted at

#requireメソッドとは
paramsからとってくるデータのオブジェクト名を指定すること

#permitメソッドとは
paramsから取ってくるデータのキーを指定すること

#使用例

def tweet_params
    params.require(:tweet).permit(:image, :text)
end

.requireメソッドがデータのオブジェクト名を定めて
.permitメソッドで変更を加えられる(保存の処理ができる)キーを指定します

このコードですとtweetオブジェクトを指定して、さらにtweetオブジェクトの中に定義された:imageと:textのキーを指定しています

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?