我有一个场景结构,如下图所示。在singlePage上,我使用prefix.suffix
来调用带有参数的新页面(tab_1),但是我无法使用prop从tab_1获取参数。我不知道该如何访问参数。
当我在控制台上编写动作时,可以访问这些参数,但是当我尝试编写Actions.currentScene时,它将向我显示singlePage参数。
Actions.tab({ param1: "foo" }) or Actions.tab_1({ param1: "param" })
场景:
componentDidMount() {
console.log(Actions);
console.log(Actions.currentScene);
this.pageInit();
}