Let's say I have the simple rails blog app.
And I have a custom action, like page_views
which shows the number of views of the post.
class PostsController < ApplicationController
def page_views
#show some page views
end
end
And there is also an associated view in the app/views/Posts
folder.
Now, in the routes.rb
I have:
map.resources :posts
map.resources :posts, :collection => {
:page_views=> :get
}
in my posts show.html.erb
file I have a link to the page_views
view:
link_to("View Page Views",page_views_posts_path + "/" + post.id.to_s)
Another paths
:
page_views_posts_path(post)
page_views_path(post)
page_views_posts(post)
Have either resulted in method not found or an incorrect url, like:
http://localhost:3000/posts/page_views.#<posts:0xabcdef00>
I would assume the url should be:
http://localhost:3000/posts/page_views/1
So, what I am missing here?