Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails 3: Using Simple_form how do I create a form that do a Post to specialities#create?

Using Simple_form how do I create a form that do a Post to specialities#create?

I tried this:

<%= simple_form_for @course_group, :html => 
   { :method => 'post', 
     :action=> 'create', 
     :controller=>'specialities' }

But the form that is created is:

<form accept-charset="UTF-8" 
   action="/course_groups" 
   class="simple_form course_group" 
   controller="specialities" 
   id="new_course_group" 
   method="post">

What I expected is:

<form accept-charset="UTF-8" 
   action="/specialities" 
   class="simple_form course_group" 
   controller="specialities" 
   id="new_course_group" 
   method="post">
like image 605
Nerian Avatar asked Jan 31 '11 20:01

Nerian


1 Answers

Try using the :url option, instead of including :action & :controller right in the html hash. I would re-write your example as:

<%= simple_form_for @course_group, 
    :url => url_for(:action => 'create', :controller => 'specialities'),
    :method => 'post' do |f| %>

Check out the actual form_for reference in http://api.rubyonrails.org

like image 112
Nuby Avatar answered Nov 15 '22 18:11

Nuby