所以我试图从我的表单中获取错误,这些错误在我的 root_path 中呈现为部分。在我尝试发布它并且它失败(或成功)之后,我想重定向回 root_path。但是,redirect_to 决定不保存任何验证信息。
想知道如何做到这一点。
class PostsController < ApplicationController
def new
@post = Post.new
end
def create
@nom = current_user.noms.build(params[:nom])
if @nom.save
flash[:success] = "Nom created!"
redirect_to root_path
else
flash[:error] = @nom.errors
redirect_to root_path
end
在我的主页/索引中,我将部分呈现为帖子的形式。
= form_for [current_user, @post] do |f|
= f.text_field :name
= f.select :category
= f.text_area :description
= f.submit "Post", class: "btn btn-primary"
- @post.errors.full_messages.each do |msg|
%p
= msg
重定向到 root_path 后,它应该将错误保留在表单的底部。
我还想保留验证失败后的信息。