我正在为学校做一个项目并使用本机反应。诚然,我在 JavaScript 方面是新手。我不明白为什么在React Navigation 教程中他们使用 const 类型。
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>
);
}
}
所以我的问题是: const 类型用于const { navigate } = this.props.navigation;