Railsドキュメント

すべての許可されていないキーを削除したパラメータのActiveSupport::HashWithIndifferentAccess

適応バージョン

説明

すべての許可されていないキーを削除したパラメータの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"}

ソースコード