我正在学习本教程https://reactnavigation.org/docs/intro/,并且遇到了一些问题。
我每次使用Expo Client应用程序渲染我的应用程序,而不是模拟器/模拟器。
我的代码在下面看到。
我最初在“ChatScreen”组件上面定义了“SimpleApp”const,但这给了我以下错误:
路线'聊天'应该声明一个屏幕。例如:......等
所以我将SimpleApp的decleration移到了“AppRegistry”之上,并标记了一个新的错误
元素类型无效:期望字符串.....您可能忘记导出组件..等等
教程没有将关键词“export default”添加到任何组件中,我认为它可能与我在Expo应用程序上运行它的事实有关吗?所以我将“export default”添加到“HomeScreen”,错误就消失了。
我似乎无法摆脱的新错误(基于以下代码)如下:
undefined不是对象(评估'this.props.navigation.navigate')
除非我删除“const {navigate}”周围的“{}”,否则我无法摆脱它,但是当我从主屏幕按下按钮时会破坏导航
import React from 'react';
import {AppRegistry,Text,Button} from 'react-native';
import { StackNavigator } from 'react-navigation';
export default class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Text>Hello, Chat App!</Text>
<Button
onPress={() => navigate('Chat')}
title="Chat with Lucy"
/>
</View>
);
}
}
class ChatScreen extends React.Component {
static navigationOptions = {
title: 'Chat with Lucy',
};
render() {
return (
<View>
<Text>Chat with Lucy</Text>
</View>
);
}
}
const SimpleApp = StackNavigator({
Home: { screen: HomeScreen },
Chat: { screen: ChatScreen },
});
AppRegistry.registerComponent('SimpleApp', () => SimpleApp);
答案 0 :(得分:14)
对于世博会,您不应该自己进行App注册,而应该让Expo进行注册,请记住您必须始终导出默认组件: 您还需要从react-native导入View和Button:请在下面找到完整代码:
import React from 'react';
import {
AppRegistry,
Text,
View,
Button
} from 'react-native';
import { StackNavigator } from 'react-navigation';
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Text>Hello, Chat App!</Text>
<Button
onPress={() => navigate('Chat', { user: 'Lucy' })}
title="Chat with Lucy"
/>
</View>
);
}
}
class ChatScreen extends React.Component {
// Nav options can be defined as a function of the screen's props:
static navigationOptions = ({ navigation }) => ({
title: `Chat with ${navigation.state.params.user}`,
});
render() {
// The screen's current route is passed in to `props.navigation.state`:
const { params } = this.props.navigation.state;
return (
<View>
<Text>Chat with {params.user}</Text>
</View>
);
}
}
const SimpleAppNavigator = StackNavigator({
Home: { screen: HomeScreen },
Chat: { screen: ChatScreen }
});
const AppNavigation = () => (
<SimpleAppNavigator />
);
export default class App extends React.Component {
render() {
return (
<AppNavigation/>
);
}
}
答案 1 :(得分:3)
正如 Bobur 在他的回答中所说,导航道具不会传递给路由组件的子级。要让您的组件访问 navigation
,您可以将其作为 prop 传递给它们,但有更好的方法。
如果您不想在组件层次结构中一直向下传递 navigation
属性,则可以改用 useNavigation
。 (在我看来,这无论如何都更干净,并且减少了我们必须编写的代码量):
function MyBackButton() {
const navigation = useNavigation();
return (
<Button
title="Back"
onPress={() => {
navigation.goBack();
}}
/>
);
}
https://reactnavigation.org/docs/use-navigation/
这真的很好,因为如果你有多个级别的组件,你就不必为了使用它而不断地将导航对象作为道具传递。只传递一次 navigation
需要我们 1. 向我们想要传递它的组件添加一个 prop。 2. 从父组件传递 prop。 3. 使用 navigation
道具进行导航。有时我们必须重复步骤 1 和 2 以将 prop 一直向下传递到需要使用 navigation
的组件。无论步骤 1 和 2 重复多少次,我们都可以使用此方法将它们压缩为单个 useNavigation
调用。
我认为最好。
答案 2 :(得分:2)
其他信息:
嵌套子组件时,需要将导航作为道具传递给父组件。
//parent.js
<childcomponent navigation={this.props.navigation}/>
您可以像这样访问导航
//child.js
enter image description here
this.props.navigation.navigate('yourcomponent');
参考:https://reactnavigation.org/docs/en/connecting-navigation-prop.html
答案 3 :(得分:0)
试试这个代码:onPress={() => this.props.navigation.navigate('Chat')}
答案 4 :(得分:0)
这将使从父导航传播到后续子导航。
答案 5 :(得分:-3)
const AppNavigation =()=>{ <SimpleApp />}
export default class App extends React.Componet{
render(){
return (
<AppNavigation/>
);
}
}