我有一個表單,它是「評論」對象的一部分,它是「後」對象的孩子,後者又是孩子的「類別」對象,我得到上面的錯誤消息與下面的代碼(使用simple_forms)任何建議?未定義的方法`post_comments_path'爲#<#<Class:0xa3ddb8c>:0xb501ae4>
= simple_form_for([@post, @post.comments.build], html: {class: 'form-horizontal'}) do |f|
= f.input :comment, label: "Your Reply", input_html: {class: "form-control"}
= f.submit
的routes.rb:
Rails.application.routes.draw do
devise_for :users
resources :categories do
resources :posts do
resources :comments
end
end
root 'categories#index'
end
請提供你的'配置/ routes.rb'。 –
發佈你的config/routes.rb文件的相關部分 –
@Longhanks,請在你的文章中添加路由,而不是在這裏。 –