5
を動作しません。私は2つの問題でhttp://jsfiddle.net/pF2cF/6/コードを持っていますテキストフィールドのMyButtonが最初にクリックされます(#1が解決された場合)ember.js <ボタン{{アクション}}は></button>が正しく
誰かが解決する手助けはできますか?私は使用するための回避策を持っていますが、私は何が間違って使用しているか分からない。
ありがとうございます!
コードスニペットは、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");
}
});
ありがとうございます!これは素晴らしい作品です! – xinqiu