我正在使用ember-cli并在尝试在帮助程序中使用帮助程序时获得异常。
以下一行......
return Ember.Handlebars.helpers['link-to'](this, args);
导致异常......
Uncaught TypeError: Ember.default.Handlebars.helpers.link-to.apply is not a function
另外我试图在代码中使用以下其他地方并得到类似的错误,原因是一样的吗?
Ember.Handlebars.helpers.view.call(this, MyView, options);
例外......
Uncaught TypeError: Ember.default.Handlebars.helpers.view.call is not a function