我正在尝试呈现相同的视图,但当它们无法发布评论时,会显示错误消息。
Comments.controllers
def create
@project = Project.find(params[:project_id])
@comment = @project.comments.build(comment_params)
@comment.user_id = current_user.id
if @comment.save
flash[:success] = "Comment created!"
redirect_to @project
else
@projectboard_items = []
flash[:danger] = "Sorry! your comment was not created"
render @project #<----- replace this line
end
end
谢谢!
发布于 2016-11-30 21:30:43
在else下面放上这个
format.html { redirect_to new_comment_path,请注意:‘对不起!您的评论未创建。’}
https://stackoverflow.com/questions/40898486
复制