我使用 twitter 引导程序进行设计。我想为特定操作使用不同的模板
def view
render :layout => 'single'
@movie = Movie.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @movie }
end
end
一旦我将渲染布局添加到操作中,我就会收到此错误消息
undefined method `model_name' for NilClass:Class
Extracted source (around line #2):
1: <%- model_class = @movie.class -%>
2: <h1><%=t '.title', :default => model_class.model_name.human %></h1>
3:
4: <p>
5: <strong><%= model_class.human_attribute_name(:title) %>:</strong><br>
如果我把渲染拿走,页面就会加载得很好。