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