0
我想在邊欄中創建博客文章列表。
我BlogsController在邊欄中顯示博客文章(rails 3)
def bloglist
@blog = Blog.all
render 'bloglist'
end
我呼籲在佈局/ application.html.erb bloglist.html.erb:
<%= render "blogs/bloglist" %>
後,我得到了缺少模板錯誤:
Missing partial blogs/bloglist with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths...
怎麼了?