我正在尝试将 HAML 与 Handlebars 一起使用,但事情无法正常工作,从而产生如下错误:
Assertion failed: Expected hash or Mixin instance, got [object Function]
以下是我的看法:
%br
%h2 Replies
%table{:class => "table table-striped"}
%thead
%tr
%th Id
%th Description
%th User
%th Actions
%tbody
- @ticket.note.each do |note|
%tr
%td= note.id
%td= note.description
%td= note.user.name
/ %td= link_to 'Edit', edit_note_path(note), :class => "btn btn-small"
%td <script type="text/x-handlebars">{{#linkTo 'notes'}}Edit{{/linkTo}}</script>
= link_to 'New', new_note_path, :class => "btn btn-primary"
我要做的是仅在编辑链接上使用把手并将其连接到 Ember.js
解决此问题的最佳方法是什么?