像componentDidEnter这样的react-native事件?

时间:2016-02-03 09:26:04

标签: javascript reactjs react-native

是否有像componentDidEnter这样的事件? 只有事件componentDidMount有效,但我需要在使用this.props.navigator.pop();

更改页面时调用函数

谢谢。

2 个答案:

答案 0 :(得分:1)

结合componentWillUnmountcomponentWillMountcomponentDidMount可以帮助您实现您的目标。 (见Component Specs and Lifecycle

答案 1 :(得分:1)

componentDidEnter不起作用,但componentWillUpdatecomponentDidUpdatecomponentWillReceiveProps工作正常。我在项目中使用了componentWillReceiveProps