是否有像componentDidEnter
这样的事件?
只有事件componentDidMount
有效,但我需要在使用this.props.navigator.pop();
谢谢。
答案 0 :(得分:1)
结合componentWillUnmount
,componentWillMount
和componentDidMount
可以帮助您实现您的目标。 (见Component Specs and Lifecycle)
答案 1 :(得分:1)
componentDidEnter
不起作用,但componentWillUpdate
,componentDidUpdate
和componentWillReceiveProps
工作正常。我在项目中使用了componentWillReceiveProps
。