一 、正向传值
传: 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
网友评论