angularjs – 如何使componentWillUnmount工作?

我试图了解componentWillUnmount如何在reactjs中工作.是自动调用还是我们需要手动调用unmountComponentAtNode才能使其工作?

我正在使用angularjs与angular并在指令中呈现父组件.现在,我想要的是,当我更改路径时,我希望我的父组件的componentWillUnmount运行并在用另一个包含另一个父组件的指令替换ng-view之前进行必要的清理.

最佳答案 它会自动调用.

http://facebook.github.io/react/docs/component-specs.html#unmounting-componentwillunmount

点赞