So I have the following code in my routes.rb file:
match "/movies/:id/find_similar_movies", :to => "movies#similar", :as => "find_similar_movies"
then in a haml page I have the following:
= link_to 'Find Movies With Same Director', find_similar_movies_path(:id=>@movie.id)
then in my controller I have:
def similar
movie=Movie.find_by_id([params(:id)])
@movie_title=movie.title
@similar_movies=Movie.find_all_by_director(movie.director)
end
and in the similar.html.haml I write:
%h2 Similar movies with #{@movie_title}
%ul
- @similar_movies.each do |movie|
%li = movie
= link_to 'Back to movie list', movies_path
when I press the = link_to 'Find Movies With Same Director', find_similar_movies_path(:id=>@movie.id)
I get:
wrong number of arguments (1 for 0)
Rails.root: /home/ubuntu/hw4_rottenpotatoes Application Trace | Framework Trace | Full Trace
app/controllers/movies_controller.rb:10:in `similar'
Request
Parameters:
{"id"=>"6"}
What's wrong?Thanks for your time...
find_similar_moviesaction, but without the full error message and matching code, it's hard to tell – Anthony Alberto Nov 2 '12 at 18:59similaraction sorry. But yeah, we need the full error message that can be found either in the browser or the rails server – Anthony Alberto Nov 2 '12 at 19:04resources :movies doblock; for exampleget 'find_more_similar', :on => :member'. This shortcut will automatically recognize the path /movies/:id/find_more_similar with GET, route to the find_more_similar action of the MoviesController, and generate the helper find_more_similar_movies_path. guides.rubyonrails.org/routing.html#adding-more-restful-actions – Ethan P. Nov 2 '12 at 19:05