📅  最后修改于: 2022-03-11 15:04:45.635000             🧑  作者: Mango
hash = { a: true, b: false, c: nil }
hash.except(:c) # => { a: true, b: false }
hash.except(:a, :b) # => { c: nil }
hash # => { a: true, b: false, c: nil }
params_to_remove_array = [ :b, :c ]
params.except(*params_to_remove_array) # => { a: true }