Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何指定从 Formtastic 表单发送数据的方法。它通常使用 POST,但我希望它在某些情况下使用 GET(即用于搜索表单)。
有可能/容易吗?
您可以在标签中指定 :method semantic_form_for,对于普通的 form_for 标签,它看起来像这样:
semantic_form_for
<% form_for :post, @post, :url => post_path(@post), :html => { :method => :get } do |f| %>
我很确定它对 Formtastic 表单同样适用。