5

当用户在输入字段中按下转义键时,如何让 Ember 触发控制器操作?

给定以下应用程序代码:

App = Ember.Application.create();

App.IndexRoute = Ember.Route.extend({
  model: function () {
    return {foo: "bar"};
  }
});

App.IndexController = Ember.ObjectController.extend({
  actions: {
    done: function () {
      console.log("done");
    },
    cancel: function () {
      console.log("cancel");
    }
  }
});

以及以下 HTML:

<body>
  <script type="text/x-handlebars" data-template-name="application">
    {{outlet}}
  </script>
  <script type="text/x-handlebars" data-template-name="index">
    {{input value=foo action="done" cancel="cancel"}}
  </script>
</body>

我希望触发控制器中的取消操作,但我得到的是一个错误:Property 'cancel' of object [object Object] is not a function.

这是一个带有上述代码的 JSBin来说明。我怎样才能使这项工作?

4

1 回答 1

11

它没有太多的文档,但看到代码...... https://github.com/emberjs/ember.js/blob/v1.1.2/packages/ember-handlebars/lib/controls/text_support.js#L106-L117

你应该像这样定义你的车把

{{input value=foo enter='done' escape-press='cancel'}}

JsBin http://jsbin.com/ObucELO/1/edit

于 2013-11-12T11:01:32.423 回答