method

to_h

Importance_1
v4.2.9 - Show latest stable - 0 notes - Class: Parameters
to_h() public

Returns a safe Hash representation of this parameter with all unpermitted keys removed.

params = ActionController::Parameters.new({ name: 'Senjougahara Hitagi', oddity: 'Heavy stone crab' }) params.to_h # => {} safe_params = params.permit(:name) safe_params.to_h # => {"name"=>"Senjougahara Hitagi"}
Show source
Register or log in to add new notes.