2

我想知道如何指定从 Formtastic 表单发送数据的方法。它通常使用 POST,但我希望它在某些情况下使用 GET(即用于搜索表单)。

有可能/容易吗?

4

1 回答 1

4

您可以在标签中指定 :method semantic_form_for,对于普通的 form_for 标签,它看起来像这样:

<% form_for :post, @post, :url => post_path(@post), :html => { :method => :get } do |f| %>

我很确定它对 Formtastic 表单同样适用。

于 2009-12-04T11:03:13.653 回答