我有一个结帐表单,其中有一个位置选择字段,该字段调用一个自定义操作,该操作通过 javascript 使用正确的交付金额更新页面。
=link_to 'Update delivery', store_orders_delivery_path(?????),
method: 'POST', remote: :true
表单有一个“位置”字段
= f.select :location, ["country1","country2","country3"]
如何将所选位置作为参数发送到我的 link_to ?