我需要重构这个私有方法。Codeclimate给我一个错误msj,因为params的行太长。我该如何重构它?
def base_plan_params
params[:base_plan][:debit_date_attributes]&.merge!(
account_id: current_account.id,
_destroy: params[:base_plan][:debit_date_attributes][:date_type].blank?,
)
params.require(:base_plan).permit(
:code,
:cover,
:name,
:products,
:pricing_model,
:metered,
debit_date_attributes: %i[id account_id date_type value _destroy],
)
end```
在这里假设哪个CodeClimate"太长";错误正在被触发,因为您并没有澄清。
您可以将允许的params组成一个数组,如下所示:
permitted_params = [:code, :cover, :name, :products, :pricing_model, :metered]
params.require(:base_plan).
permit(*permitted_params,
debit_date_attributes: %i[id account_id_data_type value _destroy],)
就我个人而言,我不会打扰,但如果CodeClimate警告让你感到困扰,那么这个解决方案可能会奏效。