method

to_h

Importance_1
v5.1.7 - Show latest stable - 0 notes - Class: 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"}
Show source
Register or log in to add new notes.