すべての許可されていないキーを削除したパラメータのActiveSupport::HashWithIndifferentAccess
適応バージョン
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
すべての許可されていないキーを削除したパラメータのActiveSupport::HashWithIndifferentAccess
使い方
to_h()
例
params = ActionController::Parameters.new({
name: "Senjougahara Hitagi",
oddity: "Heavy stone crab"
})
params.to_h
#=> ActionController::UnfilteredParameters: unable to convert unpermitted parameters to hash
safe_params = params.permit(:name)
safe_params.to_h #=> {"name"=>"Senjougahara Hitagi"}