我有这些方法:
update_holidays GET /update_holidays(.:format) groups#update_holidays
POST /update_holidays(.:format) groups#update_holidays
update_timespans GET /update_timespans(.:format) subgroups#update_timespans
POST /update_timespans(.:format) subgroups#update_timespans
并希望使用form_tag
向他们发送数据。
我怎么能这样做?
编辑: 我的尝试是:
<%= form_tag({url: ##########, method: 'post'},{name: "exchange", id: "exchange"}) do %>
答案 0 :(得分:2)
这很简单
form_tag(update_holidays_path, id: 'exchange', name: 'exchange')
和
form_tag(update_timespans_path, id: 'exchange', name: 'exchange')