Im使用twitter bootstrap設計。我想,只要我在渲染布局添加到操作我收到此錯誤信息Rails 3渲染布局在行動導致錯誤與Twitter Bootstrap
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>
如果我把渲染離開該頁面使用不同的模板的具體行動
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
將加載得很好。