Hi I have a problem due to scopes and the form_for helper in rails 3. The routes - file looks like this:

scope "(/:tab)" do
  resources :article
end

The form looks something like this:

<%= form_for(@article) %>
   <%= f.label :title %>
   <%= f.text_field :title %>
    etc.
<%end%>

The tab - attribute is stored in params[:tab], as a string My problem is that this genereate wrong urls in the form. How could I get this to work ? The genreated url article_path(params[:tab], @article) works perfectly fine

link|improve this question
feedback

5 Answers

up vote 5 down vote accepted

The answer I came up with was quite ugly, but works with both update and create:

<%= form_for(@article, :url => (@article.new_record? ? 
    articles_path(params[:tab]) : article_path(params[:tab], @article) do |f| %>

Update: A better solution would be to override the default_url_options-method to somethink like this:

def default_url_options(options={})
  { :tab => params[:tab] }
end

Then the <%= form_for @article do |f| %> could be used, and all urls are correctly generated

link|improve this answer
1  
Thanks, I've had the exact same issue and have been looking for a solution to this. I kind of thought there would be a more elegant solution. FYI, looking through the rails helper, it seems to prefer #persisted? to #new_record?, so maybe the best practice would be to do this instead: <%= form_for(@article, :url => (@article.persisted? ? article_path(params[:tab], @article) : articles_path(params[:tab]) do |f| %> – Jack Chu Apr 22 '11 at 18:33
feedback

You could specify the path explicitly:

<%= form_for(@article, :url => article_path(@article, :tab => params[:tab]) %>
link|improve this answer
1  
This seems to work nice on the edit - part, but if I want to use the same form for both new and edit, it fails with the following error in new because the new article has no id – iverds Sep 20 '10 at 9:47
feedback

Try:

<%= form_for [:tab, @article] do |f| %>
   <%= f.label :title %>
   <%= f.text_field :title %>
    etc.
<%end%>
link|improve this answer
1  
Then it looks for the tab_article_path which is not defined. – iverds Sep 20 '10 at 9:52
What are the routes generated by your routes.rb file? try "$ rake routes" in a terminal – Yannis Sep 20 '10 at 11:42
feedback

Try giving the tab as a hidden parameter.

<%= form_for @article do |f| %>
  <%= hidden_field_tag "tab", params[:tab] %>
  <%= f.label :title %>
  <%= f.text_field :title %>
  etc.
<%end%>
link|improve this answer
feedback

I have found this to be a really irritating problem and have gotten around this for now with the following monkey patch. Generic like this, it's a little bid off as you're simply passing the entire bag of parameters to polymorphic_url which is what form_for uses under the hood to guess the route. A more concise approach would be to merge just the scope value.

My solution:

https://gist.github.com/1848467

module ActionDispatch
  module Routing
    module PolymorphicRoutes
      def polymorphic_path(record_or_hash_or_array, options = {})
        begin
            polymorphic_url(record_or_hash_or_array, options.merge(:routing_type => :path))
        rescue Exception => e
            polymorphic_url(record_or_hash_or_array, options.merge(:routing_type => :path).merge(params.reject{|k,v| ["controller", "action"].include? k.to_s}))
        end
      end
    end
  end
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.