我有一个Ember应用程序,我正在使用一个动作来应用CSS动画。一旦动画完成,我想将操作从控制器冒泡到我的路线以处理更多功能。
我知道,如果我return: true;
,行动会冒出来,正如here所述。
这就是我的控制器的样子:
App.MyController = Ember.ObjectController.extend({
actions: {
myAction: function() {
$('.my-element').addClass('my-animation-class').one('webkitAnimationEnd oanimationend msAnimationEnd animationend', function(e) {
console.log('working');
return true;
}
}
}
});
如果我在animationend
回调中将某些内容记录到我的控制台,我可以看到它正常工作,如果我将return: true;
移到回调之外,则该操作会成功冒泡。但是,在回调内部返回true是行不通的。
我错过了什么?
答案 0 :(得分:8)
您可以通过调用self.target.send('myAction');
IndexController
定义如下
App.IndexController = Ember.Controller.extend({
actions: {
bubbleMe: function(item){
var self = this;
alert('IndexController says you clicked on: ' + item);
setTimeout(function(){
self.target.send('bubbleMe',[item]);
}, 1000);
}
}
});
会冒泡到像这样定义的ApplicationRoute
App.ApplicationRoute = Ember.Route.extend({
actions: {
bubbleMe: function(item){
alert('ApplicationRoute says you clicked on: ' + item);
}
}
});
你可以在这里看到一个工作小提琴:http://jsfiddle.net/tikotzky/2ce9s32f/