使用 react-native-router-flux 获取之前的场景
Get previously scene with react-native-router-flux
我正在尝试将信息从上一页获取到当前页面。
我找到了这个解决方案,但它不起作用。使用 Actions
的 属性 prevScene
但它 return 与 currentScente
相同的字符串。为什么?
另外,我看到了这个亲戚question,但是没有人回答
我也有同样的问题,但找不到合适的道具。
所以我在导航到 currentScene 时传递了一个 from
道具并将其用于进一步处理,如下所示:
Actions.currentSceneKey({ from: 'prevSceneKey' });
console.log(this.props.from); // prevSceneKey
我正在尝试将信息从上一页获取到当前页面。
我找到了这个解决方案,但它不起作用。使用 Actions
的 属性 prevScene
但它 return 与 currentScente
相同的字符串。为什么?
另外,我看到了这个亲戚question,但是没有人回答
我也有同样的问题,但找不到合适的道具。
所以我在导航到 currentScene 时传递了一个 from
道具并将其用于进一步处理,如下所示:
Actions.currentSceneKey({ from: 'prevSceneKey' });
console.log(this.props.from); // prevSceneKey