0

在我的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. 有人告诉我这很正常,但直到现在我才看到这种行为。如果有帮助,newand操作是我资源create中唯一的操作。Business我该怎么做才能让它工作?

4

1 回答 1

2

只需将 @page_title = "Add Business" 添加到您的创建方法中。“render :new” 渲染新模板但不执行新方法。

将 render 与 :action 一起使用是 Rails 新手经常感到困惑的原因。指定的操作用于确定要呈现哪个视图,但 Rails 不会在控制器中运行该操作的任何代码。您在视图中需要的任何实例变量都必须在调用渲染之前在当前操作中设置。来自http://guides.rubyonrails.org/layouts_and_rendering.html#using-render

于 2012-05-30T00:38:00.890 回答