我想構建一個新的評論表單,但它返回的錯誤比我不明白。你是否解釋我的問題?創建一個嵌套窗體:「undefined method` push'」
我的代碼
路線:
resources :posts do
resources :pushs do
resources :reviews
end
end
鏈接:
<%= link_to 'Add comment', new_post_push_review_path(@push.post_id, @push) %>
的形式,我想建:
<%= simple_form_for([@post, @post.push.reviews.build]) do |f| %>
<%= f.input :rating %>
<%= f.input :comment %>
<%= f.button :submit %>
<% end %>
&最後,控制器回顧:
class ReviewsController < ApplicationController
before_action :authenticate_user!
before_action :find_push
before_action :find_post
def new
@review = Review.new
@pushs = Push.all
end
def create
@push = Push.find(params[:review][:id])
@review = Review.new(review_params)
@review.post_id = @push.post_id
@review.push_id = @push.id
@review.user_id = current_user.id
if @review.save
redirect_to push_path(@push.post_id, @push)
else
render 'new'
end
end
private
def review_params
params.require(:review).permit(:rating, :comment)
end
def find_post
@post = Post.find(params[:post_id])
end
def find_push
@post = Post.find(params[:post_id])
@push = @post.pushs.find(params[:push_id])
end
end
好吧,如果你有任何想法,我解釋我的錯誤(S),這將是偉大的!
請顯示您的「評論」模型 –
可能是問題與後期模型。它有推動嗎? – sethi
你可以添加你的Post模型嗎?我特別想知道你是否在你的Post模型中有這樣的:has_one:push。 – Pholochtairze