在我的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
。有人告诉我这是正常的,但直到现在我才从未见过这种行为。如果有帮助,则new
和create
操作是我Business
资源中唯一的操作。我能做些什么才能让它发挥作用?
答案 0 :(得分:2)
只需将@page_title =“添加商家”添加到您的create方法即可。 “render:new”呈现新模板但不执行新方法。
使用render with:action是Rails新手的常见混淆源。指定的操作用于确定要呈现的视图,但Rails不会在控制器中运行该操作的任何代码。在调用render之前,必须在当前操作中设置视图中所需的任何实例变量。来自http://guides.rubyonrails.org/layouts_and_rendering.html#using-render