我正在尝试从我的 html.erb 文件中呈现我的 HAML 部分(_my_partial.haml):
<%= render "shared/my_partial" %>
并得到:
ActionView::Template::Error (Missing partial shared/my_partial with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :coffee]}。搜索在:
我注意到 :handlers 不包含haml。
在 Gemfile 我有
group :assets do
gem 'haml-rails'
..
end
需要注意的一件事:这只发生在生产环境中,例如当我使用时
RAILS_ENV production rails s
我怎样才能将它添加到那里,以便稍后尝试找到部分?