gpt4 book ai didi

react-native - react native : Getting a "there is no route key defined" error

转载 作者:行者123 更新时间:2023-12-04 05:10:12 26 4
gpt4 key购买 nike

我的代码位于 here

我收到一条错误消息:没有为关键 employeeList 定义路由。必须是以下之一:“auth”、“main”。我检查了 router.js 并且这个组件嵌套在主场景中,所以我不确定是什么问题。当我想创建一个员工或删除一个员工时,我得到了这个。我相信这与导航回员工列表屏幕有关。

enter image description here

最佳答案

更改并从 react-native-router-flux 导入堆栈,并为 root 和 auth 执行此操作。

当您转到堆栈的第一个元素时,您可以使用它的键调用它。这意味着如果你想转到 employeeList,你必须调用 Actions.main()。

这就是为什么人们通常用屏幕的名称来命名他们的父栈,并且首先加上“_”前缀。您可以使用 employeeList 命名堆栈,使用 _employeeList 命名第一个场景。试试这个,请让我知道结果

<Router navigationBarStyle={{ backgroundColor: '#2980b9'}}  titleStyle={{ color:'#fff', alignSelf:'center' }} >
<Stack key="root" hideNavBar={true}>
<Stack key='auth'>
<Scene key='login' component={LoginForm} title = 'Please login' />
</Stack>
<Stack key='employeeList'>
<Scene
key='_employeeList'
component={EmployeeList}
title ='Employee'
rightTitle="Add"
onRight={()=> Actions.createEmployee()}
initial
rightButtonTextStyle ={{ color:'white',alignSelf:'center',marginRight:5 }}
/>
<Scene
key='createEmployee'
component={EmployeeCreate}
title='Create Employee'
/>
</Stack>
</Stack>
</Router>

关于react-native - react native : Getting a "there is no route key defined" error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47743068/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com