Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My rails app has a single CustomerSelectionController, with two actions:

index: which shows a form where the user can enter customer information and select: which just displays a static page.

class CustomerSelectionController < ApplicationController
  def index
  end

  def select
  end
end

I've created an entry in my routes.rb file:

  resources :customer_selection

and the form in the index view looks like:

<h1>Customer Selection</h1>

<%= form_tag("customer_selection/select", :method => "get") do %>
  <%= submit_tag("Select") %>
<% end %>

however when I click on the Select button in the browser, all I get is:

Unknown action

The action 'show' could not be found for CustomerSelectionController

I'm not sure why it is trying to perform an action called show? I haven't defined or referenced one anywhere.

share|improve this question
Did you route customer_selection/select to that method? – TheDude Feb 12 at 18:01

1 Answer

up vote 0 down vote accepted

I'm not sure why it is trying to perform an action called show? I haven't defined or referenced one anywhere.

Yes you have. That's what resources does. It defines the seven default RESTful routes: index, show, new, create, edit, update and destroy. When you route to /customer_selection/select, the route that matches is "/customer_action/:id", or the "show" route. Rails instantiates your controller and attempts to invoke the "show" action on it, passing in an ID of "select".

If you want to add a route in addition to those, you need to explicitly define it, and you should also explicitly state which routes you want if you don't want all seven:

resources :customer_selection, only: %w(index) do
  collection { get :select }
  # or
  # get :select, on: :collection
end

Since you have so few routes, you can also just define them without using resources:

get "/customer_selection" => "customer_selection#index"
get "/customer_select/select" 

Note that, in the second route, the "customer_select#select" is implied. In a route with only two segments, Rails will default to "/:controller/:action" if you don't specify a controller/action.

share|improve this answer
Can I just drop the resources line then, and let convention-over-configuration take over? – user1498830 Feb 12 at 18:03
No, you still need to define a route. You don't have to use resources though, see my updated answer. – meagar Feb 12 at 18:04
Ok, where can I get a concise explanation of that code block? – user1498830 Feb 12 at 18:07
Cool, I like your second option better. I can read it. Thanks. – user1498830 Feb 12 at 18:08
The Rails routing guide, as linked in the comments to your question: guides.rubyonrails.org/routing.html – meagar Feb 12 at 18:09
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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