简体   繁体   中英

No-Model Formtastic Form

I am looking to reproduce the following with Formtastic :

<% form_tag '/search', :method => 'get' do %>
  <%= text_field_tag :q, params[:q] %>
<% end %>

So far I have:

<% semantic_form_for :search, :html => { :method => :get } do |form| %>
  <% form.inputs do %>
    <%= form.input :q %>
  <% end %>
<% end %>

However, this requires access to the parameter hash using:

params[:search][:q]

Instead of my required:

params[:q]

I'd like to use Formtastic for all forms in the application I am working on, and so far I have only had problems with this one. Any ideas?

<%= form.input :q, :input_html => { :name => 'q' } %>

Formtastic's semantic_form_for is wrapped around Rails' form_for, which only allows "model" forms like the one you're describing. I'm pretty sure you mean "desired" rather than "required", because it's pretty easy to access params[:search][:q] or duplicate the value to params[:q] yourself.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM