私は ROR を初めて使用し、stackoverflow と github のすべてのページを調べて問題を解決しようと懸命に努力しています。すべてのページを確認したことを約束しますが、それでも問題の解決策を見つけることができませんでした。皆さんが私を助けてくれることを願っています。
問題は、thumbs_up gem を実装した後、Brady の指示に従ったことです: Rails 3 で "thumbs_up" 投票 gem を使用する方法の明確化
しかし、私のビュー ページにはエラー メッセージが表示されます。
No route matches {:action=>"vote_up", :controller=>"posts", :id=>nil}
rake ルートを確認したところ、vote_up_post パスがそこにあるので、行ってみました。
http://0.0.0.0:3000/posts/vote_up and this shows up:
ActiveRecord::RecordNotFound in PostsController#show
Couldn't find Post with id=vote_up
これが私の見解です - index.html.erb
<%= link_to('vote for this post!', vote_up_post_path(@post), :method => :post) %>
posts_controller.rb
def vote_up
begin
current_user.vote_for(@post = Post.find(params[:id]))
render :nothing => true, :status => 200
rescue ActiveRecord::RecordInvalid
render :nothing => true, :status => 404
end
end
モデル - user.rb
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me
# attr_accessible :title, :body
acts_as_voter
モデル - post.rb
attr_accessible :title, :source, :description, :imageurl, :link
validates :title, presence: true, uniqueness:true, length: { maximum: 70 }
validates :source, presence: true, length: { maximum: 20 }
validates :description, presence: true, length: { maximum: 240 }
validates :imageurl, presence: true
validates :link, presence: true
default_scope order: 'posts.created_at DESC'
acts_as_voteable
ルート.rb
devise_for :users
resources :posts do
member do
post :vote_up
end
end
devise_scope :user do
get "sign_in", :to => "devise/sessions#new"
get "sign_out", :to => "devise/sessions#destroy"
get "sign_up", :to => "devise/registrations#new"
end
resources :submissions
match '/submit', to: 'submissions#new'
match '/post', to: 'posts#new'
このようなばかげた質問をして申し訳ありませんが、皆さんからの助けを本当に感謝します.