1

我只是想使用 Handlebars 助手来渲染视图。应用程序运行时我不断收到错误消息:

Uncaught TypeError: Cannot call method 'apply' of undefined 

车把:

 <script type='text/x-handlebars'>
    {{outlet}}
  </script>

  <script type='text/x-handlebars' id="index">
    INDEX
    {{my-component-helper}}
  </script>

  <script type='text/x-handlebars' id="myComponentHelper">
  I'm here
  </script>

JS:

App = Ember.Application.create();

Ember.Handlebars.helper('my-component-helper', App.MyComponentHelperView);

App.MyComponentHelperView = Ember.View.extend({
  templateName:'myComponentHelper' 
});

这是一个说明问题的 JSbin:http: //jsbin.com/edUm/1/edit

4

1 回答 1

1

你的问题是订购。App.MyComponentHelperView在解释代码时,您的版本未定义。试试这个:

App = Ember.Application.create();

App.MyComponentHelperView = Ember.View.extend({
  templateName:'myComponentHelper' 
});

Ember.Handlebars.helper('my-component-helper', App.MyComponentHelperView);
于 2013-08-27T14:40:37.367 回答