与えられたキーをフィルタリングした新しいActionController::Parametersインスタンスを作成
適応バージョン
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
与えられたキーをフィルタリングした新しいActionController::Parametersインスタンスを作成
使い方
except(キー..)
例
params = ActionController::Parameters.new(a: 1, b: 2, c: 3)
params.except(:a, :b) #=> <ActionController::Parameters {"c"=>3} permitted: false>
params.except(:d) #=> <ActionController::Parameters {"a"=>1, "b"=>2, "c"=>3} permitted: false>