各位好,我有这么一个接口,然后想传这些数据
然后我现在想在 shipping_charge_template
controller 下面拿到 shipping_methods 的数值,我定义了如下函数
def shipping_charge_temp_params
params.require(:shipping_charge_template).permit(:name, :shipping_charge_method_id,
shipping_methods: %i[name
base_items base_price
increment_items_unit
increment_items_unit_price])
end
但是一直拿不到,得到的结果是
{"name"=>"带快递的运费模板测试", "shipping_charge_method_id"=>2} permitted: true>
我是根据这个how to permit an array with strong parameters来做的, 看了 rails guide 也是一头雾水,不知道是不是我哪里理解错了,麻烦各位大大帮忙看看,多谢。