2019-07-08 react-native-router-flux 导航Actions来回传值

一 、正向传值

传: Actions.ComponetKey({key:value})

接: 在组件的prop里通过key直接拿

            constructor(props){

                console.log(props.key)

            }

           componentDidMount(props){

                console.log(props.key)

            }

二 、反向传值

传:Actions.pop({refresh:{key:value}})

        Actions.pop({popNum:num, refresh:{key:value}})

接:只能在componentWillReceiveProps里接受

        componentWillReceiveProps(nextProps){

                console.log(nestProps.key)

        }

     注: refresh触发componentWillReceiveProps, 不传refresh不会触发componentWillReceiveProps

你可能感兴趣的:(2019-07-08 react-native-router-flux 导航Actions来回传值)