2

我刚搬到 Ember 1.0 pre 并且遇到了 EM.handlebars.registerHelper 的问题

我正在使用此处定义的车把助手:

Ember.Handlebars.registerHelper('editable', function(path, options) {
  options.hash.valueBinding = path;
  return Ember.Handlebars.helpers.view.call(this, App.EditField, options);
});

像那样 :

{{#view App.CardView}}
  {{#with view.content}}
    {{editable name}}
  {{/with}}
{{/view}}

但我得到的不是name的,而且该字段不可编辑。

如果我写

{{#view App.CardView}}
  {{#with view.content}}
    {{name}}
  {{/with}}
{{/view}}

显示名称属性。

任何想法 ?

谢谢

4

0 回答 0