美文网首页
2019-07-08 react-native-router-f

2019-07-08 react-native-router-f

作者: 小丁123 | 来源:发表于2019-07-10 11:18 被阅读0次

    一 、正向传值

    传: 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-f

          本文链接:https://www.haomeiwen.com/subject/kbaahctx.html