http://jsfiddle.net/pF2cF/6/コードに2つの問題があります:1。[MyButton]をクリックしてもApp.indexControllerのclickButton関数に移動しません2.テキストフィールドに入力すると、最初にMyButtonのクリックがトリガーされます( #1解決される)
誰かがそれらを解決するのを手伝うことができますか?を使用することによる回避策はありますが、を使用することの何が問題になっているのかわかりません。
ありがとう!
2013年1月14日のマスターブランチのember.jsを使用した、コードスニペットは次のとおりです。
<script type="text/x-handlebars" data-template-name="myTemplate">
<button {{action clickButton target="App.indexController"}} >MyButton1</button>
{{view App.MyView placeholder="Input something 1 and enter"}}
</script>
App = Em.Application.create({
ready: function () {
}
});
App.Router.map(function () {
this.route("index", { path: "/" }); //master 01142013 syntax
});
App.IndexRoute = Ember.Route.extend({
renderTemplate: function () {
this.render('myTemplate', {controller: 'indexController'});
}
});
App.indexController = Ember.Controller.extend({
clickButton: function () {
alert("clickButton");
}
});
App.MyView = Em.TextField.extend({
insertNewline: function (evt) {
alert("enter pressed");
}
});