我有帖子列表(pages#home),点击我打开评论列表(posts#show),我声明变量@feed_items。在评论的最后,我有 simple_form 新评论(comments#create)。问题:如果提交按钮上发生错误,我需要呈现带有评论的现有列表和带有错误的表单。我正在尝试评论#create:
if @comment.save
...
else
render 'posts/show'
end
但在这种情况下,变量 @feed_items 没有被声明,因为方法 posts#show 没有被调用。当我尝试编写 redirect_to 时,我看到了带有评论但没有错误消息的列表。这该怎么做?