如何在表单错误后保持部分在同一页面上?

时间:2012-05-29 22:34:12

标签: ruby ruby-on-rails-3 ruby-on-rails-3.1

在我的Business模型中,当我尝试创建业务并发生错误时,我注意到在POST之后它摆脱了我的shared/page_header部分:

def page_title
  "#{@page_title}"
end

<% unless @page_title.blank? %>
<div class="row">
   <div class="page-header span12">
      <h1><%= @page_title %></h1>
   </div>
</div>
<% end %>

def new
  @business = Business.new
  @page_title = "Add Business"
end

def create
  @business = Business.new(params[:business])
  if @business.save
    redirect_to :back, :notice => "This Business was successfully added."
  else
    render :new, :notice => "It seems there was an error. Please try again."
  end
end

现在我注意到我从/businesses/new开始,但在POST之后它会转到/businesses。有人告诉我这是正常的,但直到现在我才从未见过这种行为。如果有帮助,则newcreate操作是我Business资源中唯一的操作。我能做些什么才能让它发挥作用?

1 个答案:

答案 0 :(得分:2)

只需将@page_title =“添加商家”添加到您的create方法即可。 “render:new”呈现新模板但不执行新方法。

  

使用render with:action是Rails新手的常见混淆源。指定的操作用于确定要呈现的视图,但Rails不会在控制器中运行该操作的任何代码。在调用render之前,必须在当前操作中设置视图中所需的任何实例变量。来自http://guides.rubyonrails.org/layouts_and_rendering.html#using-render