method
to_h
v5.1.7 -
Show latest stable
- Class:
ActionController::Parameters
to_h()public
Returns a safe ActiveSupport::HashWithIndifferentAccess representation of the parameters with all unpermitted keys removed.
params = ActionController::Parameters.new({ name: "Senjougahara Hitagi", oddity: "Heavy stone crab" }) params.to_h # => ActionController::UnfilteredParameters: unable to convert unfiltered parameters to hash safe_params = params.permit(:name) safe_params.to_h # => {"name"=>"Senjougahara Hitagi"}