initialProps被React-Navigation的navigation属性覆盖解决方案

image-20200423175318343

在做页面跳转的时候发现一个很坑的事情 ios给rn传值 initialProps 有值 但是在页面上 this.props怎么都取不到

下面贴一下setup文件对比

原来的setup文件:

1
2
3
4
5
6
7
8
9
10
11
function setup(){
class Root extends Component {
render() {
return (
<RootNavigator />
);
}
}
return <Root/>;
}
module.exports = setup;

新的setup文件:

1
2
3
4
5
6
7
export default class Root extends Component {
render() {
return (
<RootNavigator screenProps={ this.props }/>
);
}
}