- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我们的 react-native 应用程序中的当前导航存在问题。我们使用 react-native-router-flux模块。
我们的路由器结构如下所示:
<Router createReducer={this.reducerCreate.bind(this)} getSceneStyle={getSceneStyle}>
<Scene key="root" hideNavBar={true}>
<Scene key={PROFILE_TABBAR} hideNavBar={true}>
<Scene key={PROFILE} hideNavBar={true} component={ProfileContainer}/>
<Scene key={PROFILE_PASSWORD} hideNavBar={true} component={PasswordContainer}/>
</Scene>
<Scene key="tabbar" hideNavBar={true} component={TabBar} initial={true}>
<Scene key="tabbar_inner" tabs={true} hideNavBar={true}>
<Scene key={TAB_1} component={Tab1Container} number={1} title={TAB_1} hideNavBar={true}/>
<Scene key={TAB_2} component={Tab2Container} number={2} title={TAB_2} hideNavBar={true} />
<Scene key={TAB_3} component={Tab3Container} number={3} title={TAB_3} hideNavBar={true} />
</Scene>
</Scene>
</Scene>
</Router>
我们使用自己的TabBar,看起来是这样的:
import {Actions, DefaultRenderer} from 'react-native-router-flux';
import TabBar from './bar';
..
export default class extends Component {
render(){
const children = this.props.navigationState.children;
const state = children[0];
return (
<View style={styles.container}>
<DefaultRenderer
navigationState={state}
key={state.key}
{...state}
onNavigate={this.props.onNavigate}
/>
<TabBar />
</View>
);
}
}
TabBar 包含几个按钮。其中之一对个人资料场景有 Action 。像这样:
{()=>Actions[PROFILE_TABBAR]()}
如果我点击配置文件按钮,它只在第一次时有效。当我返回并再次单击配置文件按钮时,出现错误:
navigationState.children[3].key "scene_2_PROFILE_TABBAR"与另一个 child 冲突!
代码有什么问题?我是否错误地使用了 Actions?我还能如何构建我的代码?
最佳答案
试试这个:
Actions.pop()
setTimeout(()=>{
Actions[PROFILE_TABBAR]()
})
关于javascript - React Native - navigationState.children[3].key "SCENE_2"与另一个 child 冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39879629/
我在 react-native 开发中使用 typescript。我通过 navigate 函数将参数传递给屏幕。 this.props.navigation.navigate("NextScreen
我们的 react-native 应用程序中的当前导航存在问题。我们使用 react-native-router-flux模块。 我们的路由器结构如下所示:
我们如何在 React Native Navigation 中使用 pop() 函数? onPress={() => navigation.pop('Home')}> 给我一个 TypeScrip
我是一名优秀的程序员,十分优秀!