我正在尝试在rails视图中渲染一个小胡子模板。
这就是我的所作所为:
**Added to my gemfile:**
gem "stache"
然后在我看来:
<% @notifications.each do |n| %>
<%= render "notifications/notification_item", n.attributes.symbolize_keys %>
<% end %>
<%= template_include_tag "notifications/notification_item" %>
我的胡子模板是app / views / notifications / _notification_item.html.mustache
我收到以下错误:
undefined method `attributes' for #<Hash:0x0000010749add8>
想法我做错了什么?建议?感谢