所以我只是嵌套了一些之前没有嵌套的资源,因为我一直试图修复所有的路径引用。我遇到的最大问题是在更大的嵌套资源中有2个嵌套资源,如下所示:
用户 - > Photos->评论
在我的表单上,它一直给我以下错误
未定义的方法`model_name'为“/ users / 2 / photos / 2 / comments / new”:String
错误页面显示源位于以下第1行(我的注释/ _form partial):
= simple_form_for ([@comment, new_user_photo_comment_path(@user,@photos,@comment)]) do |f|
= f.input :content, label: "Reply to thread"
=f.button :submit, class: "button"
这是我的评论控制器:
class CommentsController < ApplicationController
before_action :authenticate_user!
def new
@photo=Photo.find(params[:photo_id])
end
def create
@photo =Photo.find(params[:photo_id])
@comment=Comment.create(params[:comment].permit(:content, :id, :photo_id))
@comment.user_id= current_user.id
@comment.photo_id= @photo.id
@user= User.find_by(params[:id])
if @comment.save
redirect_to user_photo_path(@photo, @user)
else
render 'comments/new'
end
end
end
答案 0 :(得分:0)
首先,最好不要将资源嵌套两次以上。 您应该考虑仅在照片中嵌套评论。在routes.rb中可以这样做:
resources :users do
resources :photos
end
resources :photos do
resources :comments
end
而你的错误是因为
= simple_form_for ([@comment, new_user_photo_comment_path(@user,@photos,@comment)]) do |f|
给出方法simple_form_for
作为参数:
1 - 型号评论
2 - 字符串/users/2/photos/2/comments/new
设置正确的路径(表单操作)表单构建器需要模型作为所有参数。
也许是这样的
= simple_form_for ([@user,@photos,@comment]) do |f|
应该工作