有人知道如何onDone
在 angular2 中捕获新动画系统的回调吗?有一个动画 - 我想做一些事情onDone
......我在 angular2 的源代码中看到了这个方法的AnimationPlayer
界面,但没有任何东西暴露给用户......
最诚挚的问候!非常感谢您的回答!
有人知道如何onDone
在 angular2 中捕获新动画系统的回调吗?有一个动画 - 我想做一些事情onDone
......我在 angular2 的源代码中看到了这个方法的AnimationPlayer
界面,但没有任何东西暴露给用户......
最诚挚的问候!非常感谢您的回答!
随着即将发布的 RC6 版本,这将通过以下方式得到支持(@animation.done)
:https ://github.com/angular/angular/commit/45e8e73670b96387fc109921fad299742d3f7cbf
你有没有尝试过
import {AnimationPlayer} from '@angular/core';
constructor(animationPlayer:AnimationPlayer) {
animationPlayer.onDone(() => {
console.log('animation done');
});
}