我有一行:
resources :comments
但是当我来/ comments /创建时,我看到了:
No route matches [POST] "/comments/create"
...
comments_path GET /comments(.:format) comments#index
POST /comments(.:format) comments#create
new_comment_path GET /comments/new(.:format) comments#new
edit_comment_path GET /comments/:id/edit(.:format) comments#edit
comment_path GET /comments/:id(.:format) comments#show
PATCH /comments/:id(.:format) comments#update
PUT /comments/:id(.:format) comments#update
DELETE /comments/:id(.:format) comments#destroy
有什么问题?类和行动都存在。
答案 0 :(得分:2)
查看rake routes
输出中的第2行。
您应该发布到/comments
以触发create
操作。